]> git.droids-corp.org - dpdk.git/blobdiff - devtools/check-forbidden-tokens.awk
common/cnxk: update completion code
[dpdk.git] / devtools / check-forbidden-tokens.awk
index fd77cdd87ce82fa7e9e8a07e3df8102cf5edf772..61ba707c9bab085f5c35ee4d9e177101ddd56d72 100755 (executable)
@@ -54,7 +54,7 @@ BEGIN {
        }
        for (i in deny_folders) {
                re = "^\\+\\+\\+ b/" deny_folders[i];
-               if ($0 ~ deny_folders[i]) {
+               if ($0 ~ re) {
                        in_file = 1
                        last_file = $0
                }
@@ -62,13 +62,8 @@ BEGIN {
 }
 END {
        if (count > 0) {
-               print "Warning in " substr(last_file,6) ":"
-               print "are you sure you want to add the following:"
-               for (key in expressions) {
-                       if (expressions[key] > 0) {
-                               print key
-                       }
-               }
+               print "Warning in " substr(last_file,7) ":"
+               print MESSAGE
                exit RET_ON_FAIL
        }
 }