From 3c31f6f45a85063483bbdc96c1a12fd52d521bf7 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Thu, 4 Apr 2002 10:42:27 +0000 Subject: [PATCH] * lib/am/subdirs.am: ($(RECURSIVE_TARGETS), maintainer-clean-recursive): $(MAKEFLAGS) -> $$MAKEFLAGS, so that we don't run into problems if MAKEFLAGS contains '$(...)'. --- ChangeLog | 7 +++++++ lib/am/subdirs.am | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) 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 -- 2.7.4