From 72e9fed611aa186fd040c5c2a9a96f01f04c5294 Mon Sep 17 00:00:00 2001 From: Ralf Wildenhues Date: Wed, 10 May 2006 21:16:21 +0000 Subject: [PATCH] * tests/depcomp6.test, tests/depcomp7.test: Cater for OpenBSD /bin/sh -e issue with failing commands in if clauses. --- ChangeLog | 3 +++ tests/depcomp6.test | 2 +- tests/depcomp7.test | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) 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 : -- 2.47.2