summaryrefslogtreecommitdiff
path: root/build/binbuild.sh
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2000-12-20 23:48:06 +0000
committerRyan Bloom <rbb@apache.org>2000-12-20 23:48:06 +0000
commit5d9e6e043ef0f2d66acd2ed530a3f4bf1feb4550 (patch)
tree237cc001beef948f9f0e12a8b3da512475125ac0 /build/binbuild.sh
parent8b80bbc18b632b7fac686c0e798c60710765d4c3 (diff)
downloadhttpd-5d9e6e043ef0f2d66acd2ed530a3f4bf1feb4550.tar.gz
This is about 99% complete for the binbuild script. The only problem that
still remains is that some of the apr-util functions aren't being compiled in, so they work when the apr-util library is in the right location, but once that library is removed, the server won't start. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87468 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/binbuild.sh')
-rwxr-xr-xbuild/binbuild.sh12
1 files changed, 4 insertions, 8 deletions
diff --git a/build/binbuild.sh b/build/binbuild.sh
index 8ea2c680f1..30ef3eb298 100755
--- a/build/binbuild.sh
+++ b/build/binbuild.sh
@@ -7,19 +7,15 @@
# See http://www.apache.org/docs/LICENSE
OS=`./config.guess`
-#case "x$OS" in
-# x*390*) CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most";;
-# *) CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most --enable-shared=max";;
-#esac
+CONFIGPARAM="--with-layout=BinaryDistribution --prefix=`pwd`/bindist"
APDIR=`pwd`
APDIR=`basename $APDIR`
-VER=`echo $APDIR |sed s/httpd_//`
+VER=`echo $APDIR |sed s/apache_//`
TAR="`build/PrintPath tar`"
GTAR="`build/PrintPath gtar`"
GZIP="`build/PrintPath gzip`"
-if [ x$1 != x ]
-then
+if [ x$1 != x ]; then
USER=$1
else
USER="`build/buildinfo.sh -n %u@%h%d`"
@@ -54,7 +50,7 @@ echo "Platform is \"$OS\"..."
echo "----------------------------------------------------------------------" && \
make && \
echo "----------------------------------------------------------------------" && \
- make install-quiet root="bindist/" && \
+ make install root="bindist/" && \
echo "----------------------------------------------------------------------" && \
make clean && \
echo "----------------------------------------------------------------------" && \