]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
get binbuild.sh working on Linux/390. It gets very confused when it sees
authorGreg Ames <gregames@apache.org>
Wed, 15 May 2002 15:27:55 +0000 (15:27 +0000)
committerGreg Ames <gregames@apache.org>
Wed, 15 May 2002 15:27:55 +0000 (15:27 +0000)
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

src/helpers/binbuild.sh

index 8b22a9a58b25a4ce3cbc540d9e81363e1853cf97..616aa5b224cd68c46b79d13a08054922052960d1 100755 (executable)
@@ -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" ]