stoddard 00/01/13 08:02:11
Modified: src/helpers binbuild.sh Log: Fix OS/390 binbuild break Submitted by: Greg Ames Revision Changes Path 1.15 +2 -2 apache-1.3/src/helpers/binbuild.sh Index: binbuild.sh =================================================================== RCS file: /home/cvs/apache-1.3/src/helpers/binbuild.sh,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- binbuild.sh 1999/12/09 17:19:42 1.14 +++ binbuild.sh 2000/01/13 16:02:09 1.15 @@ -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 @@ 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" ]