summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2015-05-20 15:15:46 (GMT)
committerdgp <dgp@users.sourceforge.net>2015-05-20 15:15:46 (GMT)
commit45aaf371ff8cbe786c9efba77154b41f60274178 (patch)
tree412aca9b9acb8994217e7d42161c96ea6c53c4ee
parent9f4da271438f296f754e6469bc4510db736e7b7d (diff)
downloadtcl-45aaf371ff8cbe786c9efba77154b41f60274178.zip
tcl-45aaf371ff8cbe786c9efba77154b41f60274178.tar.gz
tcl-45aaf371ff8cbe786c9efba77154b41f60274178.tar.bz2
Missed a bit
-rwxr-xr-xunix/configure3
-rw-r--r--unix/tcl.m43
2 files changed, 2 insertions, 4 deletions
diff --git a/unix/configure b/unix/configure
index a7a0bec..0b42510 100755
--- a/unix/configure
+++ b/unix/configure
@@ -8872,15 +8872,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
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index a6f4241..67c442c 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -2069,11 +2069,10 @@ dnl # preprocessing tests use only CPPFLAGS.
# Stub lib does not depend on shared/static configuration
AS_IF([test "$RANLIB" = ""], [
MAKE_STUB_LIB='${STLIB_LD} [$]@ ${STUB_LIB_OBJS}'
- INSTALL_STUB_LIB='$(INSTALL_LIBRARY) $(STUB_LIB_FILE) "$(LIB_INSTALL_DIR)/$(STUB_LIB_FILE)"'
], [
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))'
])
+ 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