From: Mladen Turk Date: Sun, 23 Jul 2006 08:36:06 +0000 (+0000) Subject: Fix the typo (probably). The %~na is something windows X-Git-Tag: 2.3.0~2236 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2a3a909453691c937b4445395db16974d2ce7f0;p=thirdparty%2Fapache%2Fhttpd.git Fix the typo (probably). The %~na is something windows help for batch files does not recognize. Anyhow, renaming to the %~nf there is no more %~na.default file generated inside conf/extra on install. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@424688 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.win b/Makefile.win index 87f1aee2b75..679a6a36b85 100644 --- a/Makefile.win +++ b/Makefile.win @@ -679,7 +679,7 @@ _installconf: if not exist "$(INSTDIR)\conf\httpd.conf" \ copy "$(INSTDIR)\conf\httpd.conf.default" "$(INSTDIR)\conf\httpd.conf" for %f in ( docs\conf\extra\*.in ) do ( \ - copy %f "$(INSTDIR)\conf\extra\%~na.default" <.y && \ + copy %f "$(INSTDIR)\conf\extra\%~nf.default" <.y && \ awk -f < "$(INSTDIR)\conf\extra\%~nf.default" ) BEGIN { serverroot = ARGV[2];