From: Jim Jagielski Date: Fri, 15 Jan 1999 15:01:16 +0000 (+0000) Subject: First step in making binbuild.sh more X-Git-Tag: 1.3.5~39 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ce18f959d3198b2cb994bfae4197de6beff3985f;p=apache First step in making binbuild.sh more "universal" as far as working with all/most shells. Remove the findprg.sh helper since PrintPath works just fine git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82659 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/binbuild.sh b/build/binbuild.sh index 3279148fcb..c323e53218 100755 --- a/build/binbuild.sh +++ b/build/binbuild.sh @@ -11,9 +11,9 @@ 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/findprg.sh tar)" -GTAR="$(src/helpers/findprg.sh gtar)" -GZIP="$(src/helpers/findprg.sh gzip)" +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 ]