From fcf3c2699b3e03d79d6f6dbf9abecbc85618d5bf Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Wed, 20 Dec 2000 16:55:50 +0000 Subject: [PATCH] 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 --- Makefile.win | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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" -- 2.40.0