From: Ralf Wildenhues Date: Wed, 10 May 2006 21:16:21 +0000 (+0000) Subject: * tests/depcomp6.test, tests/depcomp7.test: Cater for OpenBSD X-Git-Tag: Release-1-9b~51 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72e9fed611aa186fd040c5c2a9a96f01f04c5294;p=thirdparty%2Fautomake.git * tests/depcomp6.test, tests/depcomp7.test: Cater for OpenBSD /bin/sh -e issue with failing commands in if clauses. --- diff --git a/ChangeLog b/ChangeLog index 6467a9227..f48dfe9dd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2006-05-10 Ralf Wildenhues + * tests/depcomp6.test, tests/depcomp7.test: Cater for OpenBSD + /bin/sh -e issue with failing commands in if clauses. + * tests/defs.in (Be Bourne compatible): Update from current Autoconf. diff --git a/tests/depcomp6.test b/tests/depcomp6.test index ac8923802..fe799bd24 100755 --- a/tests/depcomp6.test +++ b/tests/depcomp6.test @@ -98,6 +98,6 @@ else cd sub2 $sleep echo 'choke me' > sub3/ba3.h - $MAKE && exit 1 + if $MAKE; then exit 1; fi fi : diff --git a/tests/depcomp7.test b/tests/depcomp7.test index 30e3186d6..b2cb0d48d 100755 --- a/tests/depcomp7.test +++ b/tests/depcomp7.test @@ -100,6 +100,6 @@ else cd sub2 $sleep echo 'choke me' > sub3/ba3.h - $MAKE && exit 1 + if $MAKE; then exit 1; fi fi :