From: Jim Meyering Date: Mon, 8 Aug 2011 06:54:52 +0000 (+0200) Subject: maint: prevent accidental future use of the old shell function name X-Git-Tag: v8.13~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b27edfe1dd5f18c0a6661ae877502956d95f6db;p=platform%2Fupstream%2Fcoreutils.git maint: prevent accidental future use of the old shell function name This is especially important for an error-handling shell function like this that is actually called only rarely. * cfg.mk (sc_prohibit_framework_failure): New rule, to prevent use of the old name. --- diff --git a/cfg.mk b/cfg.mk index 2111956..5f8a680 100644 --- a/cfg.mk +++ b/cfg.mk @@ -270,6 +270,12 @@ sc_prohibit_verbose_version: halt='use the print_ver_ function instead...' \ $(_sc_search_regexp) +# Use framework_failure_, not the old name without the trailing underscore. +sc_prohibit_framework_failure: + @prohibit='\' \ + halt='use framework_failure_ instead' \ + $(_sc_search_regexp) + ########################################################### _p0 = \([^"'/]\|"\([^\"]\|[\].\)*"\|'\([^\']\|[\].\)*' _pre = $(_p0)\|[/][^"'/*]\|[/]"\([^\"]\|[\].\)*"\|[/]'\([^\']\|[\].\)*'\)*