summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorpatthoyts <patthoyts@users.sourceforge.net>2006-03-28 22:23:52 (GMT)
committerpatthoyts <patthoyts@users.sourceforge.net>2006-03-28 22:23:52 (GMT)
commitca93ccccb08898c0863cfe07d0485d07df14352e (patch)
treee56c1561c2a6e7577e9c1830e74c6fdda675c238 /win
parent22435d0d61f83716a09d09e0e75003a5e21b87cd (diff)
downloadtk-ca93ccccb08898c0863cfe07d0485d07df14352e.zip
tk-ca93ccccb08898c0863cfe07d0485d07df14352e.tar.gz
tk-ca93ccccb08898c0863cfe07d0485d07df14352e.tar.bz2
Avoid pipe problems on Win98
Diffstat (limited to 'win')
-rw-r--r--win/makefile.vc5
1 files changed, 3 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc
index 1ea6cd6..a6b422f 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.67.2.12 2005/12/01 18:00:00 kennykb Exp $
+# RCS: @(#) $Id: makefile.vc,v 1.67.2.13 2006/03/28 22:23:53 patthoyts Exp $
#------------------------------------------------------------------------------
# Check to see we are configured to build with MSVC (MSDEVDIR or MSVCDIR)
@@ -480,7 +480,8 @@ test: setup $(TKTEST) $(TKLIB) $(CAT32)
!if "$(OS)" == "Windows_NT" || "$(MSVCDIR)" == "IDE"
$(TKTEST) "$(ROOT)/tests/all.tcl" $(TESTFLAGS) | $(CAT32)
!else
- $(TKTEST) "$(ROOT)/tests/all.tcl" $(TESTFLAGS) | $(CAT32)
+ $(TKTEST) "$(ROOT)/tests/all.tcl" $(TESTFLAGS) > tests.log
+ type tests.log | more
!endif
runtest: setup $(TKTEST) $(TKLIB) $(CAT32)