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-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6b8623143bffe66bcb56b9201b3cd515e100f2d;p=thirdparty%2Fapache%2Fhttpd.git 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 b0d976e6411..056e1e6a3f5 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"