From: Ralf Wildenhues Date: Sun, 12 Nov 2006 18:02:41 +0000 (+0000) Subject: * doc/Makefile.am: Use $(MAKE) $(AM_MAKEFLAGS) for building X-Git-Tag: v1.10b~275 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1622069b9f848609a7bd7cc1db56f6b3b7b6269;p=thirdparty%2Fautomake.git * 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. --- 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.