diff options
author | dgp@users.sourceforge.net <dgp> | 2015-05-20 15:17:10 (GMT) |
---|---|---|
committer | dgp@users.sourceforge.net <dgp> | 2015-05-20 15:17:10 (GMT) |
commit | 2371fe3130634b16bc4fd044515431358d11395e (patch) | |
tree | ad3c575d49def04815eaa31f43308218f3977706 /unix/configure | |
parent | d6dc51e618ccdb4ff756037985388fd16ba8a847 (diff) | |
download | tk-2371fe3130634b16bc4fd044515431358d11395e.zip tk-2371fe3130634b16bc4fd044515431358d11395e.tar.gz tk-2371fe3130634b16bc4fd044515431358d11395e.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-x | unix/configure | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/unix/configure b/unix/configure index c10a247..7934d9e 100755 --- a/unix/configure +++ b/unix/configure @@ -6695,15 +6695,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 @@ -6712,15 +6711,14 @@ fi if test "$RANLIB" = ""; then MAKE_STUB_LIB='${STLIB_LD} $@ ${STUB_LIB_OBJS}' - INSTALL_STUB_LIB='$(INSTALL_LIBRARY) $(STUB_LIB_FILE) "$(LIB_INSTALL_DIR)/$(STUB_LIB_FILE)"' else MAKE_STUB_LIB='${STLIB_LD} $@ ${STUB_LIB_OBJS} ; ${RANLIB} $@' - INSTALL_STUB_LIB='$(INSTALL_LIBRARY) $(STUB_LIB_FILE) "$(LIB_INSTALL_DIR)/$(STUB_LIB_FILE)" ; (cd "$(LIB_INSTALL_DIR)" ; $(RANLIB) $(STUB_LIB_FILE))' fi + INSTALL_STUB_LIB='$(INSTALL_LIBRARY) $(STUB_LIB_FILE) "$(LIB_INSTALL_DIR)/$(STUB_LIB_FILE)"' # Define TCL_LIBS now that we know what DL_LIBS is. # The trick here is that we don't want to change the value of TCL_LIBS if |