From 3b1447bd84aff3cbb6c6cdf5f86967a8b676b81b Mon Sep 17 00:00:00 2001 From: Bill Stoddard Date: Thu, 13 Jan 2000 16:02:09 +0000 Subject: [PATCH] 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 --- build/binbuild.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" ] -- 2.50.1