diff options
author | Kevin B Kenny <kennykb@acm.org> | 2003-03-23 03:10:09 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2003-03-23 03:10:09 (GMT) |
commit | 11faa6f4300fd411354704845136e378832cdb24 (patch) | |
tree | 99b873489375274ab632d453aa69839e151697bd /win | |
parent | 668371a4f1e9f90b7d69d55e27ebeef487148ddd (diff) | |
download | tcl-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')
-rw-r--r-- | win/makefile.vc | 6 |
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 |