From: William A. Rowe Jr Date: Wed, 20 Dec 2000 16:55:50 +0000 (+0000) Subject: Hmmm... seems the /dy solution wasn't sufficiently portable. This patch X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~374 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fcf3c2699b3e03d79d6f6dbf9abecbc85618d5bf;p=apache Hmmm... seems the /dy solution wasn't sufficiently portable. This patch prevents us from displaying the files copied, but at least bypasses the confirmation messages. Submitted by: W Stoddard Reviewed by: W Rowe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87462 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.win b/Makefile.win index b0d976e641..056e1e6a3f 100644 --- a/Makefile.win +++ b/Makefile.win @@ -164,9 +164,9 @@ _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" /dy - xcopy docs\manual "$(INSTDIR)\htdocs\manual" /sdy - xcopy docs\icons "$(INSTDIR)\icons" /sdy + xcopy docs\docroot "$(INSTDIR)\htdocs" /d /q + xcopy docs\manual "$(INSTDIR)\htdocs\manual" /s /d /q + xcopy docs\icons "$(INSTDIR)\icons" /s /d /q copy docs\conf\magic "$(INSTDIR)\conf\magic.default" if not exist "$(INSTDIR)\conf\magic" \ copy "$(INSTDIR)\conf\magic.default" "$(INSTDIR)\conf\magic"