From: hno <> Date: Mon, 1 Oct 2001 23:21:58 +0000 (+0000) Subject: ! is an shell extension not supported on all platforms.. use a dummy X-Git-Tag: SQUID_3_0_PRE1~1384 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=307aa7bbc51fe256630defcfd3da03d1080dc825;p=thirdparty%2Fsquid.git ! is an shell extension not supported on all platforms.. use a dummy true statement instead. --- diff --git a/bootstrap.sh b/bootstrap.sh index 623faa3cb0..979a9650f2 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -6,7 +6,9 @@ bootstrap() { - if ! "$@"; then + if "$@"; then + true # Everything OK + else echo "$1 failed" echo "Autotool bootstrapping failed. You will need to investigate and correct" ; echo "before you can develop on this source tree"