summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2001-11-24 17:38:01 +0100
committerWilliam A. Rowe Jr <wrowe@apache.org>2001-11-24 17:38:01 +0100
commita3a4d03f3f798e6281a0676c2d869e8726ed186a (patch)
tree64b1ec9262acafc87982bf9c6906a9dbdd7ea25b
parentFix the installation target to make sure that the manual is (diff)
downloadapache2-a3a4d03f3f798e6281a0676c2d869e8726ed186a.tar.xz
apache2-a3a4d03f3f798e6281a0676c2d869e8726ed186a.zip
Reports arrive that some awks are tripped up by an unquoted, unpaired
open curly brace. This solves, seems to have to adverse affects on other awks. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92165 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--Makefile.win2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.win b/Makefile.win
index bbc0a0f853..1de4b6caac 100644
--- a/Makefile.win
+++ b/Makefile.win
@@ -461,7 +461,7 @@ _install:
if not exist "$(INSTDIR)\conf\ssl.conf" \
copy "$(INSTDIR)\conf\ssl.default.conf" "$(INSTDIR)\conf\ssl.conf"
awk -f <<script.awk "support\dbmmanage.in" >"$(INSTDIR)\bin\dbmmanage.pl"
- { if ( $$0 ~ /^BEGIN { @AnyDBM_File::/ ) {
+ { if ( $$0 ~ /^BEGIN \{ @AnyDBM_File::/ ) {
sub( /ISA = qw\(.*\)/, "ISA = qw(SDBM_File)" );
}
if ( $$0 !~ /^#!@perlbin@/ )