From: William A. Rowe Jr Date: Thu, 16 Aug 2001 01:13:43 +0000 (+0000) Subject: *) The Win32 Makefile.win build script failed if INSTDIR="c:\path\with spaces" X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94629d5641ee7d1a2d9a71733c19799f67d7d973;p=thirdparty%2Fapache%2Fhttpd.git *) The Win32 Makefile.win build script failed if INSTDIR="c:\path\with spaces" was given, this is now fixed. PR 8184 [Jack Tan ] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@90178 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/CHANGES b/src/CHANGES index d1702c1bb90..0e7299bff35 100644 --- a/src/CHANGES +++ b/src/CHANGES @@ -1,5 +1,8 @@ Changes with Apache 1.3.21 + *) The Win32 Makefile.win build script failed if INSTDIR="c:\path\with spaces" + was given, this is now fixed. PR 8184 [Jack Tan ] + *) EBCDIC: The proxy, when used in a proxy chain, "forgot" to convert the "CONNECT host:port HTTP/1.0" request line to ASCII before contacting the next proxy, and was thus unusable for diff --git a/src/makefile.win b/src/makefile.win index 558c4f1e882..42ff55dad67 100644 --- a/src/makefile.win +++ b/src/makefile.win @@ -211,7 +211,7 @@ A print $$0; } << - awk -f <"$(INSTDIR)\bin\apxs.pl" + awk -f <"$(INSTDIR)\bin\apxs.pl" BEGIN { target = ARGV[2]; gsub( /\\/, "/", target );