devtools: relax rule for identifying symbol section
[dpdk.git] / devtools / check-symbol-change.sh
index daaf45e..cf9cfc7 100755 (executable)
@@ -25,14 +25,14 @@ build_map_changes()
                # supresses the subordonate rules below
                /[-+] a\/.*\.^(map)/ {in_map=0}
 
-               # Triggering this rule, which starts a line with a + and ends it
+               # Triggering this rule, which starts a line and ends it
                # with a { identifies a versioned section.  The section name is
                # the rest of the line with the + and { symbols remvoed.
                # Triggering this rule sets in_sec to 1, which actives the
                # symbol rule below
-               /+.*{/ {gsub("+","");
+               /^.*{/ {
                        if (in_map == 1) {
-                               sec=$1; in_sec=1;
+                               sec=$(NF-1); in_sec=1;
                        }
                }