summaryrefslogtreecommitdiffstats
path: root/unix/tcl.m4
diff options
context:
space:
mode:
authornijtmans <nijtmans>2009-11-26 07:01:45 (GMT)
committernijtmans <nijtmans>2009-11-26 07:01:45 (GMT)
commitfe3dd38f5e9956ff59341aee24ccc04e0818b19d (patch)
treeebfeb9beb09da18d4be3af45520759f7724b591f /unix/tcl.m4
parentb15ddd01de0048a7f37b5195ed7c6b44504fd513 (diff)
downloadtcl-fe3dd38f5e9956ff59341aee24ccc04e0818b19d.zip
tcl-fe3dd38f5e9956ff59341aee24ccc04e0818b19d.tar.gz
tcl-fe3dd38f5e9956ff59341aee24ccc04e0818b19d.tar.bz2
Fix [Bug 2902965] stub related changes
cause tclkit built to break
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r--unix/tcl.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4
index 6c23ace..d315658 100644
--- a/unix/tcl.m4
+++ b/unix/tcl.m4
@@ -2066,10 +2066,10 @@ dnl # preprocessing tests use only CPPFLAGS.
LIB_SUFFIX=${UNSHARED_LIB_SUFFIX}
AS_IF([test "$RANLIB" = ""], [
- MAKE_LIB='$(STLIB_LD) [$]@ ${OBJS}'
+ MAKE_LIB='$(STLIB_LD) [$]@ ${OBJS} ${STUB_LIB_OBJS}'
INSTALL_LIB='$(INSTALL_LIBRARY) $(LIB_FILE) "$(LIB_INSTALL_DIR)"/$(LIB_FILE)'
], [
- MAKE_LIB='${STLIB_LD} [$]@ ${OBJS} ; ${RANLIB} [$]@'
+ MAKE_LIB='${STLIB_LD} [$]@ ${OBJS} ${STUB_LIB_OBJS} ; ${RANLIB} [$]@'
INSTALL_LIB='$(INSTALL_LIBRARY) $(LIB_FILE) "$(LIB_INSTALL_DIR)"/$(LIB_FILE) ; (cd "$(LIB_INSTALL_DIR)" ; $(RANLIB) $(LIB_FILE))'
])
])