changeset 14716:8cfc1daa9cff

maint.mk: tweak new rule's name not to impinge * top/maint.mk (_gl_tight_scope): Rename from sc_tight_scope-0. (sc_tight_scope): Use new rule name rather than $@-0.
author Jim Meyering <meyering@redhat.com>
date Mon, 09 May 2011 13:27:55 +0200
parents 80242e285601
children ec4c259ed4ca
files ChangeLog top/maint.mk
diffstat 2 files changed, 8 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon May 09 12:30:55 2011 +0200
+++ b/ChangeLog	Mon May 09 13:27:55 2011 +0200
@@ -1,5 +1,9 @@
 2011-05-09  Jim Meyering  <meyering@redhat.com>
 
+	maint.mk: tweak new rule's name not to impinge
+	* top/maint.mk (_gl_tight_scope): Rename from sc_tight_scope-0.
+	(sc_tight_scope): Use new rule name rather than $@-0.
+
 	maint.mk: add a syntax-check rule to ensure tightly-scoped symbols
 	* top/maint.mk (sc_tight_scope): New rule.
 	(sc_tight_scope-0): New rule, ifdef'd out.
--- a/top/maint.mk	Mon May 09 12:30:55 2011 +0200
+++ b/top/maint.mk	Mon May 09 13:27:55 2011 +0200
@@ -1334,8 +1334,8 @@
 ALL_RECURSIVE_TARGETS += sc_tight_scope
 sc_tight_scope: tight-scope.mk
 	@grep noinst_HEADERS $(_gl_TS_dir)/Makefile.am > /dev/null 2>&1	\
-	  && $(MAKE) -s -C $(_gl_TS_dir)				\
-	      -f Makefile -f '$(abs_srcdir)/tight-scope.mk' $@-0	\
+	  && $(MAKE) -s -C $(_gl_TS_dir) -f Makefile			\
+	      -f '$(abs_srcdir)/tight-scope.mk' _gl_tight_scope
 	  || :
 	@rm -f $<
 
@@ -1358,8 +1358,8 @@
 # Without gnulib's progname module, you might put program_name here.
 _gl_TS_unmarked_extern_vars ?=
 _gl_TS_var_regex ?= ^(?:extern|XTERN) .*?\**(\w+)(\[.*?\])?;
-.PHONY: sc_tight_scope-0
-sc_tight_scope-0: $(bin_PROGRAMS)
+.PHONY: _gl_tight_scope
+_gl_tight_scope: $(bin_PROGRAMS)
 	t=exceptions-$$$$;						\
 	trap 's=$$?; rm -f $$t; exit $$s' 0;				\
 	for sig in 1 2 3 13 15; do					\