summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-06-16 20:48:57 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-06-16 20:48:57 (GMT)
commitbe5d1b00c4af601c562154ca455e2c0e9801d8c1 (patch)
tree71f4c2c5690e3a676df5c1702b6f7510de2c034c /unix
parent68292a6506ecddc2460b6f47f7589f8ad66a4858 (diff)
downloadtcl-be5d1b00c4af601c562154ca455e2c0e9801d8c1.zip
tcl-be5d1b00c4af601c562154ca455e2c0e9801d8c1.tar.gz
tcl-be5d1b00c4af601c562154ca455e2c0e9801d8c1.tar.bz2
link tclsh with stub library, just like xttest and tcltest, in order to allow additional static stub-enabled libraries to be linked with it.
Diffstat (limited to 'unix')
-rw-r--r--unix/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 94a5473..5295a45 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -633,9 +633,9 @@ tclLibObjs:
# This targets actually build the objects needed for the lib in the above case
objs: ${OBJS}
-${TCL_EXE}: ${TCLSH_OBJS} ${TCL_LIB_FILE}
+${TCL_EXE}: ${TCLSH_OBJS} ${TCL_LIB_FILE} ${TCL_STUB_LIB_FILE}
${CC} ${CFLAGS} ${LDFLAGS} ${TCLSH_OBJS} \
- @TCL_BUILD_LIB_SPEC@ ${LIBS} @EXTRA_TCLSH_LIBS@ \
+ @TCL_BUILD_LIB_SPEC@ ${TCL_STUB_LIB_FILE} ${LIBS} @EXTRA_TCLSH_LIBS@ \
${CC_SEARCH_FLAGS} -o ${TCL_EXE}
# Must be empty so it doesn't conflict with rule for ${TCL_EXE} above