]> granicus.if.org Git - apache/commitdiff
tell AWK to erase existing httpd.default.conf so rebuilds don't append it.
authorAllan K. Edwards <ake@apache.org>
Tue, 19 Dec 2000 21:31:55 +0000 (21:31 +0000)
committerAllan K. Edwards <ake@apache.org>
Tue, 19 Dec 2000 21:31:55 +0000 (21:31 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87430 13f79535-47bb-0310-9956-ffa450edef68

Makefile.win

index 98c8d4e6bbbc81a186f4e9df0bfcc073652c8fd5..942b417922af8fd5f4249d009269a299212177fb 100644 (file)
@@ -184,7 +184,7 @@ _install:
         gsub( /\\/, "/", serverroot );
         while ( ( getline < srcfl ) > 0 ) {
             gsub( /@@ServerRoot@@/, serverroot );
-            print $$0 >> dstfl;
+            print $$0 > dstfl;
         }
     }
 <<