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-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4536fd781a3ce91fc77eedbd9b1e1491002c59c1;p=thirdparty%2Fapache%2Fhttpd.git 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 98c8d4e6bbb..942b417922a 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; } } <<