From: Jim Meyering Date: Thu, 23 Aug 2007 07:46:14 +0000 (+0200) Subject: * Makefile.maint (patch-check): Don't remove temporaries upon failure. X-Git-Tag: v6.9.89~184 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=144fe359e1d3d13eb745afc907091bb54d67a692;p=thirdparty%2Fcoreutils.git * Makefile.maint (patch-check): Don't remove temporaries upon failure. --- diff --git a/ChangeLog b/ChangeLog index e1ed737d01..bd403da313 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-08-23 Jim Meyering + + * Makefile.maint (patch-check): Don't remove temporaries upon failure. + 2007-08-22 Jim Meyering * src/c99-to-c89.diff: Adjust offsets. diff --git a/Makefile.maint b/Makefile.maint index 4f9720b618..3c43bd5832 100644 --- a/Makefile.maint +++ b/Makefile.maint @@ -372,8 +372,7 @@ patch-check: rm -f src-c89/*.o || msg='rm failed'; \ $(MAKE) -C src-c89 CFLAGS='-Wdeclaration-after-statement -Werror' \ || msg='compile failure with extra options'; \ - rm -rf src-c89 $@.1 $@.2; \ - test "$$msg" = ok && : || echo "$$msg" 1>&2; \ + test "$$msg" = ok && rm -rf src-c89 $@.1 $@.2 || echo "$$msg" 1>&2; \ test "$$msg" = ok # Ensure that date's --help output stays in sync with the info