diff options
author | surles <surles> | 1999-06-29 00:27:31 (GMT) |
---|---|---|
committer | surles <surles> | 1999-06-29 00:27:31 (GMT) |
commit | a6deaad2a7bc285822f2b50a11dd19408e4545a3 (patch) | |
tree | 1c1d9ddfd15c748a8ecf85b305c8a5d41ebc5c2c /win | |
parent | 7d2e115f8c9c6b2c22b7636657859cc762f4a2e6 (diff) | |
download | tk-a6deaad2a7bc285822f2b50a11dd19408e4545a3.zip tk-a6deaad2a7bc285822f2b50a11dd19408e4545a3.tar.gz tk-a6deaad2a7bc285822f2b50a11dd19408e4545a3.tar.bz2 |
install-binaries was nto installing the Tk DLL on Windows
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 2173b7e..6fedea8 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.3 1999/06/26 21:49:18 surles Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.4 1999/06/29 00:27:31 surles Exp $ TCLVERSION = @TCL_VERSION@ VERSION = @TK_VERSION@ @@ -345,6 +345,8 @@ install-binaries: @$(INSTALL_DATA) $(TK_LIB_FILE) $(LIB_INSTALL_DIR)/$(TK_LIB_FILE) @echo "Installing $(WISH)" @$(INSTALL_PROGRAM) $(WISH) $(BIN_INSTALL_DIR)/$(WISH) + @echo "Installing $(TK_DLL_FILE)" + @$(INSTALL_PROGRAM) $(TK_DLL_FILE) $(BIN_INSTALL_DIR)/$(TK_DLL_FILE) @echo "Installing tkConfig.sh" @if test "$(TK_STUB_LIB_FILE)" != "" ; then \ if [ -f $(TK_STUB_LIB_FILE) ]; then \ |