summaryrefslogtreecommitdiffstats
path: root/win/makefile.vc
diff options
context:
space:
mode:
authorpatthoyts@users.sourceforge.net <patthoyts>2006-03-28 22:23:52 (GMT)
committerpatthoyts@users.sourceforge.net <patthoyts>2006-03-28 22:23:52 (GMT)
commit200f9ba0b70c6d0d2df164e375ab7f0665ff76c7 (patch)
treee56c1561c2a6e7577e9c1830e74c6fdda675c238 /win/makefile.vc
parenta20b179dfde225fd3d90ccea2d2fd801f54398f1 (diff)
downloadtk-200f9ba0b70c6d0d2df164e375ab7f0665ff76c7.zip
tk-200f9ba0b70c6d0d2df164e375ab7f0665ff76c7.tar.gz
tk-200f9ba0b70c6d0d2df164e375ab7f0665ff76c7.tar.bz2
Avoid pipe problems on Win98
Diffstat (limited to 'win/makefile.vc')
-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)