Commit 673ac931 authored by Jim Jagielski's avatar Jim Jagielski
Browse files

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
parent 02c8e81b
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -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 ]