From: Akim Demaille Date: Thu, 4 Apr 2002 10:42:24 +0000 (+0000) Subject: * lib/am/subdirs.am: X-Git-Tag: branchpoint-1-6~8 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=aa9e26cf89b9146dd9547dda658729bb1826b1d8;p=automake.git * lib/am/subdirs.am: ($(RECURSIVE_TARGETS), maintainer-clean-recursive): $(MAKEFLAGS) -> $$MAKEFLAGS, so that we don't run into problems if MAKEFLAGS contains '$(...)'. --- diff --git a/ChangeLog b/ChangeLog index d9afbb00..25532f6a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2002-04-04 Paul Eggert + + * lib/am/subdirs.am: + ($(RECURSIVE_TARGETS), maintainer-clean-recursive): + $(MAKEFLAGS) -> $$MAKEFLAGS, so that we don't run into problems if + MAKEFLAGS contains '$(...)'. + 2002-04-02 Alexandre Duret-Lutz * tests/specflags8.test: Typo. diff --git a/lib/am/subdirs.am b/lib/am/subdirs.am index 4b1ab2fd..86098e14 100644 --- a/lib/am/subdirs.am +++ b/lib/am/subdirs.am @@ -32,7 +32,7 @@ check-recursive installcheck-recursive # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $(MAKEFLAGS); amf=$$2; \ + @set fnord $$MAKEFLAGS; amf=$$2; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -69,7 +69,7 @@ maintainer-clean-recursive ## bombs. mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $(MAKEFLAGS); amf=$$2; \ + @set fnord $$MAKEFLAGS; amf=$$2; \ dot_seen=no; \ ## For distclean and maintainer-clean we make sure to use the full ## list of subdirectories. We do this so that `configure; make