diff options
author | redman <redman> | 1999-07-23 16:21:13 (GMT) |
---|---|---|
committer | redman <redman> | 1999-07-23 16:21:13 (GMT) |
commit | 8ccbbe14e929d1c4cc1acb213f06e277adb1518c (patch) | |
tree | e8a19e4b4b10f4e20f07f0a32d07d3733521c260 /unix/Makefile.in | |
parent | 7960b3162422562493249a2639b3df40d985a3ae (diff) | |
download | tk-8ccbbe14e929d1c4cc1acb213f06e277adb1518c.zip tk-8ccbbe14e929d1c4cc1acb213f06e277adb1518c.tar.gz tk-8ccbbe14e929d1c4cc1acb213f06e277adb1518c.tar.bz2 |
Fix install-sh problem, wrong directory.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 0a85b1a..875fded 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.26 1999/07/22 21:51:25 redman Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.27 1999/07/23 16:21:13 redman Exp $ # Current Tk version; used in various names. @@ -429,7 +429,7 @@ install-binaries: $(TK_LIB_FILE) $(TK_STUB_LIB_FILE) $(TK_BUILD_EXP_FILE) wish fi; \ done; @echo "Installing $(TK_LIB_FILE)" - chmod +x $(SRC_DIR)/install-sh + chmod +x $(UNIX_DIR)/install-sh @$(INSTALL_DATA) $(TK_LIB_FILE) $(LIB_INSTALL_DIR)/$(TK_LIB_FILE) @(cd $(LIB_INSTALL_DIR); $(RANLIB) $(TK_LIB_FILE)) @chmod 555 $(LIB_INSTALL_DIR)/$(TK_LIB_FILE) |