From apache-cvs-owner-apache-cvs-archive=hyperreal.org@apache.org Tue Jan 06 00:39:41 1998 Return-Path: Delivered-To: apache-cvs-archive@hyperreal.org Received: (qmail 18288 invoked by uid 6000); 6 Jan 1998 00:39:40 -0000 Received: (qmail 18282 invoked by alias); 6 Jan 1998 00:39:39 -0000 Delivered-To: apache-devsite-cvs@hyperreal.org Received: (qmail 18280 invoked by uid 149); 6 Jan 1998 00:39:39 -0000 Date: 6 Jan 1998 00:39:39 -0000 Message-ID: <19980106003939.18279.qmail@hyperreal.org> From: marc@hyperreal.org To: apache-devsite-cvs@hyperreal.org Subject: cvs commit: apache-devsite binbuild.sh Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org 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 marcs@znep.com Fri Aug 22 20:25:11 1997 -Date: Sun, 17 Aug 1997 23:12:32 -0600 (MDT) -From: Marc Slemko -Reply-To: new-httpd@apache.org -To: TLOSAP -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 marcs@znep.com Fri Aug 22 20:25:11 1997 +#Date: Sun, 17 Aug 1997 23:12:32 -0600 (MDT) +#From: Marc Slemko +#Reply-To: new-httpd@apache.org +#To: TLOSAP +#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 (marcs@znep.com) # # 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