From: Allan K. Edwards Date: Tue, 19 Dec 2000 21:31:55 +0000 (+0000) Subject: tell AWK to erase existing httpd.default.conf so rebuilds don't append it. X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~396 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1ac15e4e5f1c885df41187769b9b3bd815db18dd;p=apache tell AWK to erase existing httpd.default.conf so rebuilds don't append it. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87430 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.win b/Makefile.win index 98c8d4e6bb..942b417922 100644 --- a/Makefile.win +++ b/Makefile.win @@ -184,7 +184,7 @@ _install: gsub( /\\/, "/", serverroot ); while ( ( getline < srcfl ) > 0 ) { gsub( /@@ServerRoot@@/, serverroot ); - print $$0 >> dstfl; + print $$0 > dstfl; } } <<