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)
commitc05b753e95acd78de9a753efa54a5ed808bd546f (patch)
tree71f4c2c5690e3a676df5c1702b6f7510de2c034c /unix
parentf332c17690d0bcdcb01c334c0554c4e2a5c664a1 (diff)
downloadtcl-c05b753e95acd78de9a753efa54a5ed808bd546f.zip
tcl-c05b753e95acd78de9a753efa54a5ed808bd546f.tar.gz
tcl-c05b753e95acd78de9a753efa54a5ed808bd546f.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