summaryrefslogtreecommitdiffstats
path: root/Makefile.win
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2001-01-13 02:50:49 +0100
committerWilliam A. Rowe Jr <wrowe@apache.org>2001-01-13 02:50:49 +0100
commitd552489474300fdb3c35d3bbe21981368b7c9e30 (patch)
tree9b3c2de401ac84cc6dbb836750ca1ae038b273a5 /Makefile.win
parentFix a comment (diff)
downloadapache2-d552489474300fdb3c35d3bbe21981368b7c9e30.tar.xz
apache2-d552489474300fdb3c35d3bbe21981368b7c9e30.zip
Clearly the last patch is the -wrong- solution for awk... so I'm backing
it out; we need to find another way to help gnu awk users git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87678 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.win')
-rw-r--r--Makefile.win16
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile.win b/Makefile.win
index 50a828457e..0444772dd8 100644
--- a/Makefile.win
+++ b/Makefile.win
@@ -9,10 +9,10 @@
# _cleanr - remove (most) files generated by a Release build
# _cleand - remove (most) files generated by a Debug build
#
-# The default installation directory is /Apache2.0. This can be changed
+# The default installation directory is \Apache2.0. This can be changed
# with the INSTDIR macro, for example:
#
-# nmake /f Makefile.win INSTDIR="d:/Program Files/Apache" installr
+# nmake /f Makefile.win INSTDIR="d:\Program Files\Apache" installr
#
# Note: this does *NOT* change the compiled in default "server root"
# Also be aware that certain awk's will not accept backslahed names,
@@ -20,8 +20,8 @@
# preferably with the drive designation!
!IF "$(INSTDIR)" == ""
-INSTDIR=/Apache2.0
-!MESSAGE Using default install directory /Apache2.0
+INSTDIR=\Apache2.0
+!MESSAGE Using default install directory \Apache2.0
!ENDIF
!IFNDEF MAKEOPT
@@ -213,7 +213,7 @@ A
copy docs\conf\mime.types "$(INSTDIR)\conf\mime.types.default"
if not exist "$(INSTDIR)\conf\mime.types" \
copy "$(INSTDIR)\conf\mime.types.default" "$(INSTDIR)\conf\mime.types"
- awk -f <<script.awk docs/conf/httpd-win.conf "$(INSTDIR)/conf/httpd.default.conf" "$(INSTDIR)"
+ awk -f <<script.awk "docs\conf\httpd-win.conf" "$(INSTDIR)\conf\httpd.default.conf" "$(INSTDIR)"
BEGIN {
srcfl = ARGV[1];
dstfl = ARGV[2];
@@ -227,10 +227,10 @@ A
<<
if not exist "$(INSTDIR)\conf\httpd.conf" \
copy "$(INSTDIR)\conf\httpd.default.conf" "$(INSTDIR)\conf\httpd.conf"
- awk -f <<script.awk support/dbmmanage >"$(INSTDIR)/bin/dbmmanage.pl"
+ awk -f <<script.awk "support\dbmmanage" >"$(INSTDIR)\bin\dbmmanage.pl"
{ if ( $$0 !~ /^#.*-lsdbm/) {
gsub( /AnyDBM_File::ISA = qw\(.*\)/, "AnyDBM_File::ISA = qw(SDBM_File)" );
- print $$0;
- }
+ }
+ print $$0;
}
<<