FYI, this rule was still using the old $re variable. Now it's spelled $prohibit.
>From 67c7b8eea211efe86c9dbadfa4879cb8961e095c Mon Sep 17 00:00:00 2001 From: Jim Meyering <[email protected]> Date: Sat, 10 Apr 2010 22:30:46 +0200 Subject: [PATCH] maint.mk: correct a diagnostic * top/maint.mk (sc_prohibit_HAVE_MBRTOWC): Fix obsolete use of $re in diagnostic; now use $prohibit. --- ChangeLog | 6 ++++++ top/maint.mk | 2 +- 2 files changed, 7 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index cc0d2d5..e66d23e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-04-10 Jim Meyering <[email protected]> + + maint.mk: correct a diagnostic + * top/maint.mk (sc_prohibit_HAVE_MBRTOWC): Fix obsolete use of $re + in diagnostic; now use $prohibit. + 2010-04-10 Bruno Haible <addr...@hidden> fchownat: Fix a C++ test error on Solaris 8. diff --git a/top/maint.mk b/top/maint.mk index 5d194ec..df8e150 100644 --- a/top/maint.mk +++ b/top/maint.mk @@ -372,7 +372,7 @@ sc_require_config_h_first: sc_prohibit_HAVE_MBRTOWC: @prohibit='\bHAVE_MBRTOWC\b' \ - halt="do not use $$re; it is always defined" \ + halt="do not use $$prohibit; it is always defined" \ $(_sc_search_regexp) # To use this "command" macro, you must first define two shell variables: -- 1.7.1.rc0.264.g94f6e
