diff options
author | surles <surles@noemail.net> | 1999-06-26 21:49:18 (GMT) |
---|---|---|
committer | surles <surles@noemail.net> | 1999-06-26 21:49:18 (GMT) |
commit | 5b8b29f83277d4466bda92bc83e910db0a7f35f3 (patch) | |
tree | bcafef24bee01bda6ffea2f62783f3a0947a5795 /win/Makefile.in | |
parent | e3d2ba3663036d7b7737ce90d2650e027c97f8ee (diff) | |
download | tk-5b8b29f83277d4466bda92bc83e910db0a7f35f3.zip tk-5b8b29f83277d4466bda92bc83e910db0a7f35f3.tar.gz tk-5b8b29f83277d4466bda92bc83e910db0a7f35f3.tar.bz2 |
minor bug in tk Makefile.in
FossilOrigin-Name: eefdc29617f52f43a9a1bd3915d7556f2437b906
Diffstat (limited to 'win/Makefile.in')
-rw-r--r-- | win/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index f6af7bc..2173b7e 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.2 1999/06/18 17:35:06 redman Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.3 1999/06/26 21:49:18 surles Exp $ TCLVERSION = @TCL_VERSION@ VERSION = @TK_VERSION@ @@ -348,7 +348,7 @@ install-binaries: @echo "Installing tkConfig.sh" @if test "$(TK_STUB_LIB_FILE)" != "" ; then \ if [ -f $(TK_STUB_LIB_FILE) ]; then \ - @$(INSTALL_DATA) tkConfig.sh $(LIB_INSTALL_DIR)/tkConfig.sh; \ + $(INSTALL_DATA) tkConfig.sh $(LIB_INSTALL_DIR)/tkConfig.sh; \ echo "Installing $(TK_STUB_LIB_FILE)"; \ $(INSTALL_DATA) $(TK_STUB_LIB_FILE) \ $(LIB_INSTALL_DIR)/$(TK_STUB_LIB_FILE); \ |