From: Jim Jagielski Date: Fri, 15 Jan 1999 15:06:59 +0000 (+0000) Subject: Older shells don't support the newer method X-Git-Tag: 1.3.5~38 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4af7215a5863cbdd0504c6eb61071b24f643ffd3;p=apache Older shells don't support the newer method of shell execute ( ) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82661 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/binbuild.sh b/build/binbuild.sh index c323e53218..33ee413885 100755 --- a/build/binbuild.sh +++ b/build/binbuild.sh @@ -7,13 +7,14 @@ # See http://www.apache.org/docs/LICENSE -APDIR=$(basename $(pwd)) -VER=$(echo $APDIR |sed s/apache-//) -OS=$(src/helpers/GuessOS) -USER="$(src/helpers/buildinfo.sh -n %u@%h%d)" -TAR="$(src/helpers/PrintPath tar)" -GTAR="$(src/helpers/PrintPath gtar)" -GZIP="$(src/helpers/PrintPath gzip)" +APDIR=`pwd` +APDIR=`basename $APDIR` +VER=`echo $APDIR |sed s/apache-//` +OS=`src/helpers/GuessOS` +USER="`src/helpers/buildinfo.sh -n %u@%h%d`" +TAR="`src/helpers/PrintPath tar`" +GTAR="`src/helpers/PrintPath gtar`" +GZIP="`src/helpers/PrintPath gzip`" CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most --enable-shared=max" if [ ! -f ./ABOUT_APACHE ]