lars 99/03/19 14:57:31
Modified: src/helpers binbuild.sh
Log:
Add option to let the user specify an email address.
Revision Changes Path
1.8 +12 -3 apache-1.3/src/helpers/binbuild.sh
Index: binbuild.sh
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/helpers/binbuild.sh,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- binbuild.sh 1999/03/16 23:46:02 1.7
+++ binbuild.sh 1999/03/19 22:57:30 1.8
@@ -7,16 +7,22 @@
# See http://www.apache.org/docs/LICENSE
+CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most --enable-shared=max"
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 [ x$1 != x ]
+then
+ USER=$1
+else
+ USER="`src/helpers/buildinfo.sh -n %u@%h%d`"
+fi
+
if [ ! -f ./ABOUT_APACHE ]
then
echo "ERROR: The current directory contains no valid Apache distribution."
@@ -58,8 +64,11 @@
echo "ERROR: Failed to build Apache. See \"build.log\" for details."
exit 1;
fi
+
+echo "Binary image successfully created..."
+
+./bindist/bin/httpd -v
-echo "Binary images successfully created..."
echo "Creating supplementary files..."
( echo " " && \
|