summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
diff options
context:
space:
mode:
authorKevin B Kenny <kennykb@acm.org>2003-03-23 03:10:09 (GMT)
committerKevin B Kenny <kennykb@acm.org>2003-03-23 03:10:09 (GMT)
commit11faa6f4300fd411354704845136e378832cdb24 (patch)
tree99b873489375274ab632d453aa69839e151697bd /win/makefile.vc
parent668371a4f1e9f90b7d69d55e27ebeef487148ddd (diff)
downloadtcl-11faa6f4300fd411354704845136e378832cdb24.zip
tcl-11faa6f4300fd411354704845136e378832cdb24.tar.gz
tcl-11faa6f4300fd411354704845136e378832cdb24.tar.bz2
Added quoting around the script name in the 'test' target; Joe
Mistachkin insists that he has a configuration that fails to launch tcltest without it, and it appears harmless otherwise.
Diffstat (limited to 'win/makefile.vc')
-rw-r--r--win/makefile.vc6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index 863fe7f..a2d613d 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.100.2.2 2003/03/13 16:26:15 kennykb Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.100.2.3 2003/03/23 03:10:13 kennykb Exp $
#------------------------------------------------------------------------------
!if "$(MSVCDIR)" == ""
@@ -421,9 +421,9 @@ install: install-binaries install-libraries install-docs
test: setup $(TCLTEST) dlls $(CAT32)
set TCL_LIBRARY=$(ROOT)/library
!if "$(OS)" == "Windows_NT" || "$(MSVCDIR)" == "IDE"
- $(TCLTEST) $(ROOT)/tests/all.tcl $(TESTFLAGS)
+ $(TCLTEST) "$(ROOT)/tests/all.tcl" $(TESTFLAGS)
!else
- $(TCLTEST) $(ROOT)/tests/all.tcl $(TESTFLAGS) > tests.log
+ $(TCLTEST) "$(ROOT)/tests/all.tcl" $(TESTFLAGS) > tests.log
type tests.log | more
!endif