rse 99/04/02 02:38:03
Modified: src CHANGES . configure Log: Don't hard-code the path to AWK in --shadow bootstrapping Makefile. PR: 4050 Revision Changes Path 1.1296 +3 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1295 retrieving revision 1.1296 diff -u -r1.1295 -r1.1296 --- CHANGES 1999/03/30 06:19:06 1.1295 +++ CHANGES 1999/04/02 10:37:59 1.1296 @@ -1,5 +1,8 @@ Changes with Apache 1.3.7 + *) Don't hard-code the path to AWK in --shadow bootstrapping Makefile. + [Ralf S. Engelschall] PR#4050 + *) Add support for DSO module compilation on BSD/OS 3.x. [Randy Terbush, Covalent Technologies] 1.79 +3 -1 apache-1.3/configure Index: configure =================================================================== RCS file: /home/cvs/apache-1.3/configure,v retrieving revision 1.78 retrieving revision 1.79 diff -u -r1.78 -r1.79 --- configure 1999/03/29 11:40:18 1.78 +++ configure 1999/04/02 10:38:03 1.79 @@ -488,7 +488,9 @@ ;; esac # determine GNU platform triple - gnutriple=`$aux/GuessOS | sed -e 's:/:-:g' | $AWK '{ printf("%s",$1); }'` + # (the use of `awk' and not `$AWK' here is correct, because this + # Makefile is for platform bootstrapping, so don't hardcode paths) + gnutriple=`$aux/GuessOS | sed -e 's:/:-:g' | awk '{ printf("%s",$1); }'` # create Makefile wrapper (the first time only) if [ ".`ls $top/src.* 2>/dev/null`" = . ]; then if [ "x$quiet" = "xno" ]; then