From: William A. Rowe Jr Date: Wed, 20 Dec 2000 17:40:31 +0000 (+0000) Subject: Talk about a nasty hack :-/ Here is the Win32 build solution for the X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~373 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c28500e0ecef3f1b82a157a7fa3557f2984b126;p=apache Talk about a nasty hack :-/ Here is the Win32 build solution for the missing xcopy /Y option on NT4.0. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87464 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.win b/Makefile.win index 056e1e6a3f..c30c30c984 100644 --- a/Makefile.win +++ b/Makefile.win @@ -164,9 +164,15 @@ _install: copy support\$(LONG)\logresolve.exe "$(INSTDIR)\bin" copy support\$(LONG)\rotatelogs.exe "$(INSTDIR)\bin" copy docs\cgi-examples\printenv "$(INSTDIR)\cgi-bin\printenv.pl" - xcopy docs\docroot "$(INSTDIR)\htdocs" /d /q - xcopy docs\manual "$(INSTDIR)\htdocs\manual" /s /d /q - xcopy docs\icons "$(INSTDIR)\icons" /s /d /q + xcopy docs\docroot "$(INSTDIR)\htdocs" /d < << +A +<< + xcopy docs\manual "$(INSTDIR)\htdocs\manual" /s /d < << +A +<< + xcopy docs\icons "$(INSTDIR)\icons" /s /d < << +A +<< copy docs\conf\magic "$(INSTDIR)\conf\magic.default" if not exist "$(INSTDIR)\conf\magic" \ copy "$(INSTDIR)\conf\magic.default" "$(INSTDIR)\conf\magic"