diff options
author | Kevin B Kenny <kennykb@acm.org> | 2003-03-23 03:06:28 (GMT) |
---|---|---|
committer | Kevin B Kenny <kennykb@acm.org> | 2003-03-23 03:06:28 (GMT) |
commit | 390681c847e77cea057e25d88d083b31eecd756e (patch) | |
tree | 89eee761b643afc3008298a82ad2984cc1014cc9 /win | |
parent | b52c9a2b4366612102ed299d835e0449d0edbf1b (diff) | |
download | tcl-390681c847e77cea057e25d88d083b31eecd756e.zip tcl-390681c847e77cea057e25d88d083b31eecd756e.tar.gz tcl-390681c847e77cea057e25d88d083b31eecd756e.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 62196bb..386e637 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.102 2003/03/11 21:59:52 kennykb Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.103 2003/03/23 03:06:31 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 |