From: Bradley Nicholes Date: Tue, 12 Mar 2002 21:01:46 +0000 (+0000) Subject: Fixed the slashes on the server root path X-Git-Tag: CHANGES~113 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c8092972298afacbb42d42aa18fbb68ce2c8b03;p=apache Fixed the slashes on the server root path git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93868 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/mkconfNW.awk b/build/mkconfNW.awk index 3ec7a51bb1..0770bfba34 100644 --- a/build/mkconfNW.awk +++ b/build/mkconfNW.awk @@ -2,7 +2,7 @@ BEGIN { - A["ServerRoot"] = "SYS:\APACHE2" + A["ServerRoot"] = "SYS:/APACHE2" A["Port"] = "80" } @@ -35,9 +35,7 @@ BEGIN { match ($0,/@@.*@@/) { s=substr($0,RSTART+2,RLENGTH-4) -# substr($0,RSTART,RLENGTH) = A[s] sub(/@@.*@@/,A[s],$0) -# print }