marc        98/01/05 16:39:39

  Modified:    .        binbuild.sh
  Log:
  A few updates.
  
  This is not compatible with 1.3 right now, but that is easily fixed when
  we want a 1.3 binary.
  
  Revision  Changes    Path
  1.3       +22 -16    apache-devsite/binbuild.sh
  
  Index: binbuild.sh
  ===================================================================
  RCS file: /export/home/cvs/apache-devsite/binbuild.sh,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- binbuild.sh       1997/08/27 14:17:37     1.2
  +++ binbuild.sh       1998/01/06 00:39:38     1.3
  @@ -1,20 +1,20 @@
  -
  -From [EMAIL PROTECTED] Fri Aug 22 20:25:11 1997
  -Date: Sun, 17 Aug 1997 23:12:32 -0600 (MDT)
  -From: Marc Slemko <[EMAIL PROTECTED]>
  -Reply-To: new-httpd@apache.org
  -To: TLOSAP <new-httpd@apache.org>
  -Subject: binbuild.sh: script to build binary releases
  -
  -Pay attention now.  If you have access to build a binary on a particular
  -platform, this is the easy way to do it.  Can't guarentee it will be
  -right, but it will certainly make my life easier for building binary
  -releases.
  -
  -
   #!/bin/sh 
   #
  -# $Id: binbuild.sh,v 1.2 1997/08/27 14:17:37 coar Exp $
  +#
  +#From [EMAIL PROTECTED] Fri Aug 22 20:25:11 1997
  +#Date: Sun, 17 Aug 1997 23:12:32 -0600 (MDT)
  +#From: Marc Slemko <[EMAIL PROTECTED]>
  +#Reply-To: new-httpd@apache.org
  +#To: TLOSAP <new-httpd@apache.org>
  +#Subject: binbuild.sh: script to build binary releases
  +#
  +#Pay attention now.  If you have access to build a binary on a particular
  +#platform, this is the easy way to do it.  Can't guarentee it will be
  +#right, but it will certainly make my life easier for building binary
  +#releases.
  +#
  +#
  +# $Id: binbuild.sh,v 1.3 1998/01/06 00:39:38 marc Exp $
   # Marc Slemko ([EMAIL PROTECTED])
   #
   # Script to make Apache binary releases.  The below variables must be
  @@ -29,7 +29,7 @@
   # release is the release of the Apache version that is being built.
   # It must also be the base name of the tarball and the name of the
   # directory that it is untarred into
  -release=apache_1.2.3-dev
  +release=apache_1.2.5
   dir=$release
   # conf is the Configuration file that you wish to use to build httpd
   conf=Configuration
  @@ -59,6 +59,12 @@
   cd $dir/src || exit 1
   echo running Configure
   ./Configure || exit 1
  +echo making binaries in support
  +cd ../support || exit 1
  +# no, we don't make suexec or worry too much about errors here
  +# Marc is lazy.
  +make
  +cd ../src || exit 1
   echo attempting to make httpd
   make 2>&1 | tee ../../make.out-$system
   if [ ! -f httpd ] ; then
  
  
  

Reply via email to