You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by gr...@apache.org on 2002/05/15 17:27:56 UTC

cvs commit: apache-1.3/src/helpers binbuild.sh

gregames    02/05/15 08:27:55

  Modified:    src/helpers binbuild.sh
  Log:
  get binbuild.sh working on Linux/390.  It gets very confused when it sees
  options etc intended for OS390.
  
  Revision  Changes    Path
  1.20      +2 -2      apache-1.3/src/helpers/binbuild.sh
  
  Index: binbuild.sh
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/helpers/binbuild.sh,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- binbuild.sh	18 Oct 2001 15:25:26 -0000	1.19
  +++ binbuild.sh	15 May 2002 15:27:55 -0000	1.20
  @@ -8,7 +8,7 @@
   
   OS=`src/helpers/GuessOS`
   case "x$OS" in
  -  x*390*) CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most";;
  +  x*OS390*) CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most";;
     *cygwin*) CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most \
                            --enable-rule=SHARED_CORE --libexecdir=bin";;
         *) CONFIGPARAM="--with-layout=BinaryDistribution --enable-module=most --enable-shared=max";;
  @@ -274,7 +274,7 @@
       if [ "x$TAR" != "x" ]
       then
         case "x$OS" in
  -        x*390*) $TAR -cfU ../apache_$VER-$OS.tar -C .. apache_$VER;;
  +        x*OS390*) $TAR -cfU ../apache_$VER-$OS.tar -C .. apache_$VER;;
   	    *) (cd .. && $TAR -cf apache_$VER-$OS.tar apache_$VER);;
         esac
         if [ "x$GZIP" != "x" ]