From c1622069b9f848609a7bd7cc1db56f6b3b7b6269 Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Sun, 12 Nov 2006 18:02:41 +0000 Subject: [PATCH] * doc/Makefile.am: Use $(MAKE) $(AM_MAKEFLAGS) for building amhello, to prevent gmake from invoking make with MAKEFLAGS it does not understand. Report by Patrick Welche. --- ChangeLog | 5 +++++ doc/Makefile.am | 4 ++-- doc/Makefile.in | 4 ++-- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 45bd7b027..a951f87e9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2006-11-12 Ralf Wildenhues + * doc/Makefile.am: Use $(MAKE) $(AM_MAKEFLAGS) for building + amhello, to prevent gmake from invoking make with MAKEFLAGS + it does not understand. + Report by Patrick Welche. + * lib/gnupload: Revert last change. Add pointer to upload instructions of the GNU Maintenance Instructions. Suggestion by Karl Berry. diff --git a/doc/Makefile.am b/doc/Makefile.am index 233193931..a0a083b10 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -59,7 +59,7 @@ $(srcdir)/amhello-1.0.tar.gz: $(amhello_sources) $(top_srcdir)/configure.ac ACLOCAL=aclocal-$(APIVERSION) AUTOMAKE=automake-$(APIVERSION) \ autoreconf -vfi && \ ./configure && \ - make distcheck && \ - make distclean && \ + $(MAKE) $(AM_MAKEFLAGS) distcheck && \ + $(MAKE) $(AM_MAKEFLAGS) distclean && \ rm -rf $(amhello_configury) && \ mv amhello-1.0.tar.gz .. diff --git a/doc/Makefile.in b/doc/Makefile.in index 19d535356..d08ca3be2 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -669,8 +669,8 @@ $(srcdir)/amhello-1.0.tar.gz: $(amhello_sources) $(top_srcdir)/configure.ac ACLOCAL=aclocal-$(APIVERSION) AUTOMAKE=automake-$(APIVERSION) \ autoreconf -vfi && \ ./configure && \ - make distcheck && \ - make distclean && \ + $(MAKE) $(AM_MAKEFLAGS) distcheck && \ + $(MAKE) $(AM_MAKEFLAGS) distclean && \ rm -rf $(amhello_configury) && \ mv amhello-1.0.tar.gz .. # Tell versions [3.59,3.63) of GNU make to not export all variables. -- 2.47.2