diff options
author | mdejong <mdejong> | 2001-09-10 00:40:54 (GMT) |
---|---|---|
committer | mdejong <mdejong> | 2001-09-10 00:40:54 (GMT) |
commit | d1eec3b592e0f72cae2a2ee84afdcba0b817b1a1 (patch) | |
tree | 272352ec815225feb6c0fe5536a02473060bba5b | |
parent | 772a77c9e5f050601586a1ebcc79b26848a14eae (diff) | |
download | tk-d1eec3b592e0f72cae2a2ee84afdcba0b817b1a1.zip tk-d1eec3b592e0f72cae2a2ee84afdcba0b817b1a1.tar.gz tk-d1eec3b592e0f72cae2a2ee84afdcba0b817b1a1.tar.bz2 |
* win/Makefile.in: Use TKTEST variable directly
instead of depending on the tktest alias.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | win/Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2001-09-09 Mo DeJong <mdejong@users.sourceforge.net> + + * win/Makefile.in: Use TKTEST variable directly + instead of depending on the tktest alias. + 2001-09-08 Mo DeJong <mdejong@users.sourceforge.net> * win/mkd.bat: diff --git a/win/Makefile.in b/win/Makefile.in index 2d5df58..fd25731 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -4,7 +4,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.42 2001/08/04 00:29:56 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.43 2001/09/10 00:40:54 mdejong Exp $ TCLVERSION = @TCL_VERSION@ VERSION = @TK_VERSION@ @@ -382,7 +382,7 @@ test: binaries $(TKTEST) ./$(TKTEST) "$(ROOT_DIR_NATIVE)/tests/all.tcl" $(TESTFLAGS) \ | ./$(CAT32) -runtest: tktest +runtest: $(TKTEST) @TCL_LIBRARY="$(TCL_SRC_DIR_NATIVE)/library"; export TCL_LIBRARY; \ TK_LIBRARY="$(ROOT_DIR_NATIVE)/library"; export TK_LIBRARY; \ PATH="$(PATH):$(TCL_BIN_DIR)"; export PATH; \ |