summaryrefslogtreecommitdiffstats
path: root/unix/configure
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2015-05-20 15:12:50 (GMT)
committerdgp <dgp@users.sourceforge.net>2015-05-20 15:12:50 (GMT)
commit9f4da271438f296f754e6469bc4510db736e7b7d (patch)
tree4995531fc7af9da157e51b25d9bd12ceebb7a53b /unix/configure
parent5b379ffc49f71a2c6bccd3f1a282bdbca3a1d0b7 (diff)
downloadtcl-9f4da271438f296f754e6469bc4510db736e7b7d.zip
tcl-9f4da271438f296f754e6469bc4510db736e7b7d.tar.gz
tcl-9f4da271438f296f754e6469bc4510db736e7b7d.tar.bz2
[29044ba23f] Remove RANLIB as part of library installation. At best it's
redundant to the RANLIB already done as part of library build. At worst, it conflicts with needs of cross-compiling. Thanks Erik Leunissen.
Diffstat (limited to 'unix/configure')
-rwxr-xr-xunix/configure3
1 files changed, 1 insertions, 2 deletions
diff --git a/unix/configure b/unix/configure
index cb46f8d..a7a0bec 100755
--- a/unix/configure
+++ b/unix/configure
@@ -8856,15 +8856,14 @@ else
if test "$RANLIB" = ""; then
MAKE_LIB='$(STLIB_LD) $@ ${OBJS}'
- INSTALL_LIB='$(INSTALL_LIBRARY) $(LIB_FILE) "$(LIB_INSTALL_DIR)/$(LIB_FILE)"'
else
MAKE_LIB='${STLIB_LD} $@ ${OBJS} ; ${RANLIB} $@'
- INSTALL_LIB='$(INSTALL_LIBRARY) $(LIB_FILE) "$(LIB_INSTALL_DIR)/$(LIB_FILE)" ; (cd "$(LIB_INSTALL_DIR)" ; $(RANLIB) $(LIB_FILE))'
fi
+ INSTALL_LIB='$(INSTALL_LIBRARY) $(LIB_FILE) "$(LIB_INSTALL_DIR)/$(LIB_FILE)"'
fi