diff options
Diffstat (limited to 'maint.mk')
-rw-r--r-- | maint.mk | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; } || : |