diff options
author | dgp <dgp@users.sourceforge.net> | 2005-07-05 20:56:40 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-07-05 20:56:40 (GMT) |
commit | 3e49224006a6fc0af4538fbee81bc2b06ae07bed (patch) | |
tree | 7b9c350694adda110c2ed6795911b627ad1d8073 | |
parent | 40f516583284ae68380b4b1e3b6442f5adf82e46 (diff) | |
download | tk-3e49224006a6fc0af4538fbee81bc2b06ae07bed.zip tk-3e49224006a6fc0af4538fbee81bc2b06ae07bed.tar.gz tk-3e49224006a6fc0af4538fbee81bc2b06ae07bed.tar.bz2 |
* unix/Makefile.in: Purged use of TCLTESTARGS [RFE 1161550].
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | unix/Makefile.in | 6 |
2 files changed, 7 insertions, 3 deletions
@@ -1,3 +1,7 @@ +2005-07-05 Don Porter <dgp@users.sourceforge.net> + + * unix/Makefile.in: Purged use of TCLTESTARGS [RFE 1161550]. + 2005-06-23 Daniel Steffen <das@users.sourceforge.net> * generic/tkConsole.c (TkConsolePrint): prevent potential NULL deref. 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,... |