From: Bill Stoddard Date: Thu, 13 Jan 2000 16:02:09 +0000 (+0000) Subject: Fix OS/390 binbuild break X-Git-Tag: 1.3.10~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3b1447bd84aff3cbb6c6cdf5f86967a8b676b81b;p=apache Fix OS/390 binbuild break Submitted by: Greg Ames git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84454 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/binbuild.sh b/build/binbuild.sh index 16eb20263c..9d44b6a5e9 100755 --- a/build/binbuild.sh +++ b/build/binbuild.sh @@ -8,7 +8,7 @@ OS=`src/helpers/GuessOS` case "x$OS" in - x*390) CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most --enable-module=log_agent --enable-module=log_referer --enable-module=example --enable-module=mmap_static";; + x*390*) CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most";; *) CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most --enable-shared=max";; esac APDIR=`pwd` @@ -272,7 +272,7 @@ else if [ "x$TAR" != "x" ] then case "x$OS" in - x*390) $TAR -cfU ../apache_$VER-$OS.tar -C .. apache_$VER;; + x*390*) $TAR -cfU ../apache_$VER-$OS.tar -C .. apache_$VER;; *) $TAR -cf ../apache_$VER-$OS.tar -C .. apache_$VER;; esac if [ "x$GZIP" != "x" ]