Commit 02c8e81b authored by Jim Jagielski's avatar Jim Jagielski
Browse files

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
parent 844e0bf4
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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 ]