From f2a3a909453691c937b4445395db16974d2ce7f0 Mon Sep 17 00:00:00 2001 From: Mladen Turk Date: Sun, 23 Jul 2006 08:36:06 +0000 Subject: [PATCH] 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 --- Makefile.win | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]; -- 2.47.2