jim         99/01/15 07:07:00

  Modified:    src/helpers binbuild.sh
  Log:
  Older shells don't support the newer method
  of shell execute (  )
  
  Revision  Changes    Path
  1.3       +8 -7      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.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- binbuild.sh       1999/01/15 15:01:16     1.2
  +++ binbuild.sh       1999/01/15 15:06:59     1.3
  @@ -7,13 +7,14 @@
   # See http://www.apache.org/docs/LICENSE
   
   
  -APDIR=$(basename $(pwd))
  -VER=$(echo $APDIR |sed s/apache-//)
  -OS=$(src/helpers/GuessOS)
  -USER="$(src/helpers/buildinfo.sh -n [EMAIL PROTECTED])"
  -TAR="$(src/helpers/PrintPath tar)"
  -GTAR="$(src/helpers/PrintPath gtar)"
  -GZIP="$(src/helpers/PrintPath gzip)"
  +APDIR=`pwd`
  +APDIR=`basename $APDIR`
  +VER=`echo $APDIR |sed s/apache-//`
  +OS=`src/helpers/GuessOS`
  +USER="`src/helpers/buildinfo.sh -n [EMAIL PROTECTED]"
  +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 [ ! -f ./ABOUT_APACHE ]
  
  
  

Reply via email to