]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
* tests/depcomp6.test, tests/depcomp7.test: Fix failure logic
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 19 Mar 2006 06:13:41 +0000 (06:13 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 19 Mar 2006 06:13:41 +0000 (06:13 +0000)
to work with `set -e'.

ChangeLog
tests/depcomp6.test
tests/depcomp7.test

index ecae5670f2ac3c498fcff1ac53f44d9365cd53d4..51bb07afce2fa752812e3466193064bf59126724 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2006-03-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
+       * tests/depcomp6.test, tests/depcomp7.test: Fix failure logic
+       to work with `set -e'.
+
        * tests/depcomp6.test, tests/depcomp7.test: New tests,
        for general `depcomp' functionality, with and without
        `subdir-objects', with and without `libtool'.
index 7de5a1704121ffae38d0d58f957dfd97e8b243fa..8f80efc90a26d566424369c1aea3f758ffea3fe7 100755 (executable)
@@ -98,5 +98,5 @@ else
   cd sub2
   $sleep
   echo 'choke me' > sub3/ba3.h
-  $MAKE && exit 1
+  if $MAKE; then false; else :; fi
 fi
index 98bb77b43c8f14f796b64d8cb0501dae6a2bf961..321fbef45ce57ac7143b098f1bc6361f96b3bef2 100755 (executable)
@@ -100,5 +100,5 @@ else
   cd sub2
   $sleep
   echo 'choke me' > sub3/ba3.h
-  $MAKE && exit 1
+  if $MAKE; then false; else :; fi
 fi