]> granicus.if.org Git - apache/commitdiff
Fix the typo (probably). The %~na is something windows
authorMladen Turk <mturk@apache.org>
Sun, 23 Jul 2006 08:36:06 +0000 (08:36 +0000)
committerMladen Turk <mturk@apache.org>
Sun, 23 Jul 2006 08:36:06 +0000 (08:36 +0000)
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

index 87f1aee2b75ea81e40b46eff8c99bd6509d8163d..679a6a36b853152e62f543371e4d7d2553c8efc5 100644 (file)
@@ -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 <<script.awk "docs/conf/extra/%~nf.in" "$(INSTDIR)" > "$(INSTDIR)\conf\extra\%~nf.default" )
     BEGIN { 
        serverroot = ARGV[2];