* doc/Makefile.am: Use $(MAKE) $(AM_MAKEFLAGS) for building
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 12 Nov 2006 18:02:41 +0000 (18:02 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 12 Nov 2006 18:02:41 +0000 (18:02 +0000)
amhello, to prevent gmake from invoking make with MAKEFLAGS
it does not understand.
Report by Patrick Welche.

ChangeLog
doc/Makefile.am
doc/Makefile.in

index 45bd7b0..a951f87 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
+       * 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.
index 2331939..a0a083b 100644 (file)
@@ -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 ..
index 19d5353..d08ca3b 100644 (file)
@@ -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.