From: Ralf Wildenhues Date: Thu, 23 Mar 2006 06:30:06 +0000 (+0000) Subject: * tests/depcomp6.test, tests/depcomp7.test: Change back to X-Git-Tag: Release-1-9b~82 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa2878d133f349908345d688b40dd033a20e15f6;p=thirdparty%2Fautomake.git * tests/depcomp6.test, tests/depcomp7.test: Change back to using `$MAKE && exit 1', but make sure the last command in the test is successful. --- diff --git a/ChangeLog b/ChangeLog index bb5ec54d3..db532668a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2006-03-23 Ralf Wildenhues + + * tests/depcomp6.test, tests/depcomp7.test: Change back to + using `$MAKE && exit 1', but make sure the last command in the + test is successful. + 2006-03-21 Clifford Wolf (tiny change) Stepan Kasal Ralf Wildenhues diff --git a/tests/depcomp6.test b/tests/depcomp6.test index 8f80efc90..ac8923802 100755 --- a/tests/depcomp6.test +++ b/tests/depcomp6.test @@ -98,5 +98,6 @@ else cd sub2 $sleep echo 'choke me' > sub3/ba3.h - if $MAKE; then false; else :; fi + $MAKE && exit 1 fi +: diff --git a/tests/depcomp7.test b/tests/depcomp7.test index 321fbef45..30e3186d6 100755 --- a/tests/depcomp7.test +++ b/tests/depcomp7.test @@ -100,5 +100,6 @@ else cd sub2 $sleep echo 'choke me' > sub3/ba3.h - if $MAKE; then false; else :; fi + $MAKE && exit 1 fi +: