From 18810ae65f72b8b8a73c04dd2be92ff1a34969ad Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 1 Feb 2009 20:19:03 +0100 Subject: [PATCH] * maint.mk (sc_redundant_const): Use $(_prohibit_regexp). --- maint.mk | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/maint.mk b/maint.mk index b75e9b5591..5271c25f17 100644 --- a/maint.mk +++ b/maint.mk @@ -414,10 +414,9 @@ sc_proper_name_utf8_requires_ICONV: # Warn about "c0nst struct Foo const foo[]", # but not about "char const *const foo" or "#define const const". sc_redundant_const: - @grep -E '\bconst\b[[:space:][:alnum:]]{2,}\bconst\b' \ - $$($(VC_LIST_EXCEPT)) && \ - { echo 1>&2 '$(ME): redundant "const" in declarations'; \ - exit 1; } || : + @re='\bconst\b[[:space:][:alnum:]]{2,}\bconst\b' \ + msg='redundant "const" in declarations' \ + $(_prohibit_regexp) sc_const_long_option: @grep '^ *static.*struct option ' $$($(VC_LIST_EXCEPT)) \ -- 2.47.3