summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authordavygrvy <davygrvy>2002-06-10 22:45:51 (GMT)
committerdavygrvy <davygrvy>2002-06-10 22:45:51 (GMT)
commit8f1d90728fc1174621225a05b99e796e5b98853c (patch)
tree3d020f0c64f4626de861d69b9bf37655711e13c8 /win
parent2d16e519a080ed6d8c55721f49a707e28db9532d (diff)
downloadtk-8f1d90728fc1174621225a05b99e796e5b98853c.zip
tk-8f1d90728fc1174621225a05b99e796e5b98853c.tar.gz
tk-8f1d90728fc1174621225a05b99e796e5b98853c.tar.bz2
Fixed a win98 issue where the /exclude option for xcopy is unsupported.
Reported by Roy Terry <royterry@earthlink.net>.
Diffstat (limited to 'win')
-rw-r--r--win/makefile.vc11
1 files changed, 7 insertions, 4 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index 2b7a591..d8752da 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -12,7 +12,7 @@
# Copyright (c) 2001-2002 David Gravereaux.
#
#------------------------------------------------------------------------------
-# RCS: @(#) $Id: makefile.vc,v 1.59 2002/05/08 02:22:37 davygrvy Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.60 2002/06/10 22:45:51 davygrvy Exp $
#------------------------------------------------------------------------------
!if "$(MSVCDIR)" == ""
@@ -574,9 +574,12 @@ install-libraries:
@xcopy /i /y "$(GENERICDIR)\tkPlatDecls.h" "$(INCLUDE_INSTALL_DIR)\"
@xcopy /i /y "$(GENERICDIR)\tkIntXlibDecls.h" "$(INCLUDE_INSTALL_DIR)\"
@xcopy /i /y "$(XLIBDIR)\X11\*.h" "$(INCLUDE_INSTALL_DIR)\X11\"
- @xcopy /i /y "$(ROOT)\library" "$(SCRIPT_INSTALL_DIR)\" /s /exclude:<<
-CVS
-<<
+ @xcopy /i /y "$(ROOT)\library\*" "$(SCRIPT_INSTALL_DIR)\"
+ @xcopy /i /y "$(ROOT)\library\*" "$(SCRIPT_INSTALL_DIR)\"
+ @xcopy /i /y "$(ROOT)\library\demos\*" "$(SCRIPT_INSTALL_DIR)\demos\"
+ @xcopy /i /y "$(ROOT)\library\demos\images\*" "$(SCRIPT_INSTALL_DIR)\demos\images\"
+ @xcopy /i /y "$(ROOT)\library\images\*" "$(SCRIPT_INSTALL_DIR)\images\"
+ @xcopy /i /y "$(ROOT)\library\msgs\*" "$(SCRIPT_INSTALL_DIR)\msgs\"
#---------------------------------------------------------------------