]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove the hardcoded /Y parameter when doing a xcopy
authorBradley Nicholes <bnicholes@apache.org>
Thu, 29 Apr 2004 16:51:05 +0000 (16:51 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Thu, 29 Apr 2004 16:51:05 +0000 (16:51 +0000)
Submitted by: Guenter Knauf <fuankg@apache.org>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@103551 13f79535-47bb-0310-9956-ffa450edef68

NWGNUmakefile
build/NWGNUenvironment.inc

index 4b4fafdf131d5895e29de9cdcb6922fcd7387284..8e92f45b1af8a17fbe1aaa78a6b3bca70f7832d6 100644 (file)
@@ -328,11 +328,11 @@ install :: nlms FORCE
        -copy docs\conf\mime.types      $(INSTALL)\Apache2\conf\mime.types
        -copy docs\cgi-examples\printenv $(INSTALL)\Apache2\cgi-bin\printenv.pl
        @echo rem copying the docs directories > xc.bat
-       @echo xcopy docs\error $(INSTALL)\Apache2\error /E /Y >> xc.bat
-       @echo xcopy docs\docroot $(INSTALL)\Apache2\htdocs /E /Y >> xc.bat
-       @echo xcopy docs\icons $(INSTALL)\Apache2\icons /E /Y >> xc.bat
-       @echo xcopy docs\man $(INSTALL)\Apache2\man /E /Y >> xc.bat
-       @echo xcopy docs\manual $(INSTALL)\Apache2\manual /E /Y >> xc.bat
+       @echo xcopy docs\error $(INSTALL)\Apache2\error $(XCOPYSW) >> xc.bat
+       @echo xcopy docs\docroot $(INSTALL)\Apache2\htdocs $(XCOPYSW) >> xc.bat
+       @echo xcopy docs\icons $(INSTALL)\Apache2\icons $(XCOPYSW) >> xc.bat
+       @echo xcopy docs\man $(INSTALL)\Apache2\man $(XCOPYSW) >> xc.bat
+       @echo xcopy docs\manual $(INSTALL)\Apache2\manual $(XCOPYSW) >> xc.bat
        $(CMD) xc.bat
        $(DEL) xc.bat
 
index ae0cd0e19e11e8db65e9e6dc70dcb94b4f30322b..d8374f1388c702d7f30d9fbe181e314229869d29 100644 (file)
@@ -246,12 +246,14 @@ CHKNOT=cmd /C if not exist
 DEL = del /F
 DELTREE = cmd /C rd /s/q
 WINNT=1
+XCOPYSW = /E
 else
 CMD=command /C
 CHK=command /C if exist
 CHKNOT=command /C if not exist
 DEL = del
 DELTREE = deltree /y
+XCOPYSW = /E /Y
 endif