summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2005-07-05 20:56:40 (GMT)
committerdgp <dgp@users.sourceforge.net>2005-07-05 20:56:40 (GMT)
commit3e49224006a6fc0af4538fbee81bc2b06ae07bed (patch)
tree7b9c350694adda110c2ed6795911b627ad1d8073 /unix/Makefile.in
parent40f516583284ae68380b4b1e3b6442f5adf82e46 (diff)
downloadtk-3e49224006a6fc0af4538fbee81bc2b06ae07bed.zip
tk-3e49224006a6fc0af4538fbee81bc2b06ae07bed.tar.gz
tk-3e49224006a6fc0af4538fbee81bc2b06ae07bed.tar.bz2
* unix/Makefile.in: Purged use of TCLTESTARGS [RFE 1161550].
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r--unix/Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index e684690..18cb549 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -5,7 +5,7 @@
# "autoconf" program (constructs like "@foo@" will get replaced in the
# actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.105 2005/05/25 20:32:33 hobbs Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.106 2005/07/05 20:56:50 dgp Exp $
# Current Tk version; used in various names.
@@ -563,7 +563,7 @@ test: tktest
TCL_LIBRARY=@TCL_SRC_DIR@/library; export TCL_LIBRARY; \
TK_LIBRARY=@TK_SRC_DIR@/library; export TK_LIBRARY; \
./tktest $(TOP_DIR)/tests/all.tcl -geometry +0+0 \
- $(TESTFLAGS) $(TCLTESTARGS)
+ $(TESTFLAGS)
# Tests with different languages
testlang: tktest
@@ -575,7 +575,7 @@ testlang: tktest
do \
LANG=$(lang); export LANG; \
./tktest $(TOP_DIR)/tests/all.tcl -geometry +0+0 \
- $(TESTFLAGS) $(TCLTESTARGS); \
+ $(TESTFLAGS); \
done
# Useful target to launch a built tktest with the proper path,...