From 621e9ab9c4d0d3230b86d9380f062dd1c07cd4ac Mon Sep 17 00:00:00 2001 From: Alexandre Oliva Date: Sun, 6 Jun 1999 21:32:03 +0000 Subject: [PATCH] * automake.in (handle_dist): Change emitted rules so that a failure in `$(MAKE) distcheck-hook' propagates to the outer make. --- ChangeLog | 5 +++++ automake.in | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 42226773..ae6c66ca 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-06-07 Jim Meyering + + * 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 * automake.in (handle_single_transform_list): Replace AM_FLAG and diff --git a/automake.in b/automake.in index 6b34b93c..80ed96d7 100755 --- a/automake.in +++ b/automake.in @@ -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 ' : '') -- 2.43.5