From: Greg Ames Date: Wed, 15 May 2002 15:27:55 +0000 (+0000) Subject: get binbuild.sh working on Linux/390. It gets very confused when it sees X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=47e2b57da33d28d563cc21cef8dd42d6b4452ea1;p=thirdparty%2Fapache%2Fhttpd.git get binbuild.sh working on Linux/390. It gets very confused when it sees options etc intended for OS390. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@95116 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/helpers/binbuild.sh b/src/helpers/binbuild.sh index 8b22a9a58b2..616aa5b224c 100755 --- a/src/helpers/binbuild.sh +++ b/src/helpers/binbuild.sh @@ -8,7 +8,7 @@ OS=`src/helpers/GuessOS` case "x$OS" in - x*390*) CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most";; + x*OS390*) CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most";; *cygwin*) CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most \ --enable-rule=SHARED_CORE --libexecdir=bin";; *) CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most --enable-shared=max";; @@ -274,7 +274,7 @@ else if [ "x$TAR" != "x" ] then case "x$OS" in - x*390*) $TAR -cfU ../apache_$VER-$OS.tar -C .. apache_$VER;; + x*OS390*) $TAR -cfU ../apache_$VER-$OS.tar -C .. apache_$VER;; *) (cd .. && $TAR -cf apache_$VER-$OS.tar apache_$VER);; esac if [ "x$GZIP" != "x" ]