Commit 27e0db30 authored by Mladen Turk's avatar Mladen Turk
Browse files

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
parent 4c6c832b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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];