summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authordavygrvy <davygrvy@pobox.com>2004-09-08 00:05:54 (GMT)
committerdavygrvy <davygrvy@pobox.com>2004-09-08 00:05:54 (GMT)
commit326902ab98a4abd8375f3ab5b455e23122db47bd (patch)
tree0e1d892e69413e5c80e6c88715693a1d7d4681a1 /win
parente933655b36ff1b6d429bc1f3cee2e32346d6c476 (diff)
downloadtcl-326902ab98a4abd8375f3ab5b455e23122db47bd.zip
tcl-326902ab98a4abd8375f3ab5b455e23122db47bd.tar.gz
tcl-326902ab98a4abd8375f3ab5b455e23122db47bd.tar.bz2
some quoting needed to be removed as it was breaking with VC7.
Diffstat (limited to 'win')
-rw-r--r--win/makefile.vc8
1 files changed, 4 insertions, 4 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index ffa0844..ec5628f 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -12,7 +12,7 @@
# Copyright (c) 2001-2004 David Gravereaux.
#
#------------------------------------------------------------------------------
-# RCS: @(#) $Id: makefile.vc,v 1.132 2004/09/02 11:23:03 vincentdarley Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.133 2004/09/08 00:05:54 davygrvy Exp $
#------------------------------------------------------------------------------
!if !defined(MSDEVDIR) && !defined(MSVCDIR)
@@ -906,7 +906,7 @@ install-libraries: tclConfig install-msgs install-tzdata
@$(CPY) "$(GENERICDIR)\tclPlatDecls.h" "$(INCLUDE_INSTALL_DIR)\"
@$(CPY) "$(ROOT)\library\history.tcl" "$(SCRIPT_INSTALL_DIR)\"
@$(CPY) "$(ROOT)\library\init.tcl" "$(SCRIPT_INSTALL_DIR)\"
- @$(CPY) "$(ROOT)\library\clock.tcl" "$(SCRIPT_INSTALL_DIR)\"
+ @$(CPY) "$(ROOT)\library\clock.tcl" "$(SCRIPT_INSTALL_DIR)\"
@$(CPY) "$(ROOT)\library\tm.tcl" "$(SCRIPT_INSTALL_DIR)\"
@$(CPY) "$(ROOT)\library\ldAout.tcl" "$(SCRIPT_INSTALL_DIR)\"
@$(CPY) "$(ROOT)\library\parray.tcl" "$(SCRIPT_INSTALL_DIR)\"
@@ -918,13 +918,13 @@ install-libraries: tclConfig install-msgs install-tzdata
install-tzdata:
@echo "Installing time zone data"
- set TCL_LIBRARY="$(ROOT)/library"
+ set TCL_LIBRARY=$(ROOT)/library
$(TCLSH) "$(ROOT)/tools/installData.tcl" \
"$(ROOT)/library/tzdata" "$(SCRIPT_INSTALL_DIR)/tzdata"
install-msgs:
@echo "Installing message catalogs"
- set TCL_LIBRARY="$(ROOT)/library"
+ set TCL_LIBRARY=$(ROOT)/library
$(TCLSH) "$(ROOT)/tools/installData.tcl" \
"$(ROOT)/library/msgs" "$(SCRIPT_INSTALL_DIR)/msgs"