]> sourceware.org Git - automake.git/commitdiff
* automake.in (handle_dist): Change emitted rules so that a failure
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Sun, 6 Jun 1999 21:32:03 +0000 (21:32 +0000)
committerAlexandre Oliva <oliva@dcc.unicamp.br>
Sun, 6 Jun 1999 21:32:03 +0000 (21:32 +0000)
in `$(MAKE) distcheck-hook' propagates to the outer make.

ChangeLog
automake.in

index 422267736476dffadddb66d9f372c6b954950651..ae6c66caa6134a760f34511fb494c8d98c2de0c8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-06-07  Jim Meyering  <meyering@ascend.com>
+
+       * automake.in (handle_dist): Change emitted rules so that a failure
+       in `$(MAKE) distcheck-hook' propagates to the outer make.
+
 1999-05-27  Tom Tromey  <tromey@cygnus.com>
 
        * automake.in (handle_single_transform_list): Replace AM_FLAG and
index 6b34b93c4fe6b7b440459588b41339335f8f6737..80ed96d7f35e7055aa79aba1814e95c316724823 100755 (executable)
@@ -2869,13 +2869,13 @@ distcheck: dist
        GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf -
        mkdir $(distdir)/=build
        mkdir $(distdir)/=inst
-       dc_install_base=`cd $(distdir)/=inst && pwd`; \\'
+       dc_install_base=`cd $(distdir)/=inst && pwd` \\'
                          . (&target_defined ('distcheck-hook')
-                            ? ("\n\t\$(MAKE) \$(AM_MAKEFLAGS)"
-                               . " distcheck-hook; \\")
+                            ? ("\n\t  && \$(MAKE) \$(AM_MAKEFLAGS)"
+                               . " distcheck-hook \\")
                             : '')
                          . '
-       cd $(distdir)/=build \\
+         && cd $(distdir)/=build \\
          && ../configure '
 
                          . ($seen_gettext ? '--with-included-gettext ' : '')
This page took 0.045548 seconds and 5 git commands to generate.