diff options
-rw-r--r-- | .x-sc_prohibit_strcmp | 1 | ||||
-rw-r--r-- | maint.mk | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.x-sc_prohibit_strcmp b/.x-sc_prohibit_strcmp index fdceaf00b..56631abf1 100644 --- a/.x-sc_prohibit_strcmp +++ b/.x-sc_prohibit_strcmp @@ -1,2 +1 @@ -^src/system\.h ChangeLog @@ -132,7 +132,8 @@ sc_prohibit_atoi_atof: # Use STREQ rather than comparing strcmp == 0, or != 0. sc_prohibit_strcmp: @grep -nE '! *str''cmp *\(|\<str''cmp *\([^)]+\) *==' \ - $$($(VC_LIST_EXCEPT)) && \ + $$($(VC_LIST_EXCEPT)) \ + | grep -vE ':# *define STREQ\(' && \ { echo '$(ME): use STREQ in place of the above uses of str''cmp' \ 1>&2; exit 1; } || : |