summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Eilebrecht <lars@apache.org>1999-03-16 23:46:02 +0000
committerLars Eilebrecht <lars@apache.org>1999-03-16 23:46:02 +0000
commit021edd0ab68b20caa560735c4908c797cca9a71a (patch)
tree0af91cdb33c4392cc6560fdef643ddfe0ccd6f47
parent8228a41e9d61e753e4aa8327971ee7764023fc30 (diff)
downloadhttpd-021edd0ab68b20caa560735c4908c797cca9a71a.tar.gz
Oops...
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82925 13f79535-47bb-0310-9956-ffa450edef68
-rwxr-xr-xbuild/binbuild.sh20
1 files changed, 10 insertions, 10 deletions
diff --git a/build/binbuild.sh b/build/binbuild.sh
index 691a4faf87..8bfa4cf708 100755
--- a/build/binbuild.sh
+++ b/build/binbuild.sh
@@ -9,7 +9,7 @@
APDIR=`pwd`
APDIR=`basename $APDIR`
-VER=`echo $APDIR |sed s/apache-//`
+VER=`echo $APDIR |sed s/apache_//`
OS=`src/helpers/GuessOS`
USER="`src/helpers/buildinfo.sh -n %u@%h%d`"
TAR="`src/helpers/PrintPath tar`"
@@ -90,7 +90,7 @@ echo "Creating supplementary files..."
./bindist/bin/httpd -V && \
echo "----------------------------------------------------------------------" \
) > README.bindist
-cp README.bindist ../apache-$VER-$OS.README
+cp README.bindist ../apache_$VER-$OS.README
( echo " " && \
echo "Apache $VER binary installation" && \
@@ -192,28 +192,28 @@ then
else
if [ "x$GTAR" != "x" ]
then
- $GTAR -zcf ../apache-$VER-$OS.tar.gz -C .. --owner=root --group=root apache-$VER
+ $GTAR -zcf ../apache_$VER-$OS.tar.gz -C .. --owner=root --group=root apache_$VER
else
if [ "x$TAR" != "x" ]
then
- $TAR -cf ../apache-$VER-$OS.tar -C .. apache-$VER
+ $TAR -cf ../apache_$VER-$OS.tar -C .. apache_$VER
if [ "x$GZIP" != "x" ]
then
- $GZIP ../apache-$VER-$OS.tar
+ $GZIP ../apache_$VER-$OS.tar
fi
else
echo "ERROR: Could not find a 'tar' program!"
echo " Please execute the following commands manually:"
- echo " tar -cf ../apache-$VER-$OS.tar ."
- echo " gzip ../apache-$VER-$OS.tar"
+ echo " tar -cf ../apache_$VER-$OS.tar ."
+ echo " gzip ../apache_$VER-$OS.tar"
fi
fi
- if [ -f ../apache-$VER-$OS.tar.gz ] && [ -f ../apache-$VER-$OS.README ]
+ if [ -f ../apache_$VER-$OS.tar.gz ] && [ -f ../apache_$VER-$OS.README ]
then
echo "Ready."
- echo "You can find the binary archive (apache-$VER-$OS.tar.gz)"
- echo "and the readme file (apache-$VER-$OS.README) in the"
+ echo "You can find the binary archive (apache_$VER-$OS.tar.gz)"
+ echo "and the readme file (apache_$VER-$OS.README) in the"
echo "parent directory."
exit 0;
else