]> granicus.if.org Git - apache/commitdiff
Oops...
authorLars Eilebrecht <lars@apache.org>
Tue, 16 Mar 1999 23:46:02 +0000 (23:46 +0000)
committerLars Eilebrecht <lars@apache.org>
Tue, 16 Mar 1999 23:46:02 +0000 (23:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@82925 13f79535-47bb-0310-9956-ffa450edef68

build/binbuild.sh

index 691a4faf87c776b2ecc5210d783241053fec6e55..8bfa4cf70800482f646a3861482d9efc702e2f62 100755 (executable)
@@ -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