From: Jim Jagielski Date: Mon, 4 Feb 2002 14:56:51 +0000 (+0000) Subject: Most likely a very stupid and anal X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2208db929ebd807a22cb7be314bc13237efa52b9;p=thirdparty%2Fapache%2Fhttpd.git Most likely a very stupid and anal patch, but this uses no new constructs git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@93222 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure b/configure index 05b624feeaa..193a278d0b1 100755 --- a/configure +++ b/configure @@ -1590,7 +1590,14 @@ else -e "s:Makefile in :Makefile in $src\\/:" \ -e "s:Makefile\$:Makefile in $src:") fi 3>&1 1>&2` -[ $rc = 0 ] || exit 1 + +## Ugly. So far, we've only used -eq, so just in case, use this +## stupid code unless we're *sure* that -ne is also available +if [ $rc -eq 0 ]; then + : +else + exit 1 +fi ## ## final hints