From ce18f959d3198b2cb994bfae4197de6beff3985f Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Fri, 15 Jan 1999 15:01:16 +0000 Subject: [PATCH] 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 --- build/binbuild.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 ] -- 2.50.1