From: Akim Demaille Date: Thu, 4 Apr 2002 10:42:27 +0000 (+0000) Subject: * lib/am/subdirs.am: X-Git-Tag: v1.10.2~1394 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3c31f6f45a85063483bbdc96c1a12fd52d521bf7;p=platform%2Fupstream%2Fautomake.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 d9afbb0..25532f6 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 4b1ab2f..86098e1 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