wsanchez 2002/11/24 20:26:54
Modified: build binbuild.sh
Log:
teeny optimization
Revision Changes Path
1.43 +4 -4 httpd-2.0/build/binbuild.sh
Index: binbuild.sh
===================================================================
RCS file: /home/cvs/httpd-2.0/build/binbuild.sh,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- binbuild.sh 25 Nov 2002 04:25:18 -0000 1.42
+++ binbuild.sh 25 Nov 2002 04:26:54 -0000 1.43
@@ -7,13 +7,13 @@
# See http://www.apache.org/docs/LICENSE
OS=`./srclib/apr/build/config.guess`
-BUILD_DIR="`pwd`/bindist"
+APFULLDIR=`pwd`
+BUILD_DIR="$APFULLDIR/bindist"
DEFAULT_DIR="/usr/local/apache2"
-APDIR=`pwd`
+APDIR=$APFULLDIR
APDIR=`basename $APDIR`
-APFULLDIR=`pwd`
CONFIGPARAM="--enable-layout=Apache --prefix=$BUILD_DIR --enable-mods-shared=most --with-expat=$APFULLDIR/srclib/apr-util/xml/expat
--enable-static-support"
-VER=`echo $APDIR |sed s/httpd-//`
+VER=`echo $APDIR | sed s/httpd-//`
TAR="`srclib/apr/build/PrintPath tar`"
GZIP="`srclib/apr/build/PrintPath gzip`"
|