diff options
author | dgp@users.sourceforge.net <dgp> | 2005-07-05 20:56:40 (GMT) |
---|---|---|
committer | dgp@users.sourceforge.net <dgp> | 2005-07-05 20:56:40 (GMT) |
commit | 2bce9b592fdca6c7fb43a4f3eab063a456b127ff (patch) | |
tree | 7b9c350694adda110c2ed6795911b627ad1d8073 | |
parent | 078b93e3d2db8985472c2805093fa98ecf16a54e (diff) | |
download | tk-2bce9b592fdca6c7fb43a4f3eab063a456b127ff.zip tk-2bce9b592fdca6c7fb43a4f3eab063a456b127ff.tar.gz tk-2bce9b592fdca6c7fb43a4f3eab063a456b127ff.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,... |