]> granicus.if.org Git - apache/commitdiff
Fixed the slashes on the server root path
authorBradley Nicholes <bnicholes@apache.org>
Tue, 12 Mar 2002 21:01:46 +0000 (21:01 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Tue, 12 Mar 2002 21:01:46 +0000 (21:01 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93868 13f79535-47bb-0310-9956-ffa450edef68

build/mkconfNW.awk

index 3ec7a51bb1944f67744a40bb10ebba4bfe6309f9..0770bfba34f680b559d5f0ea087b8b8a88fd461c 100644 (file)
@@ -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
 }