diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-06-16 20:48:57 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-06-16 20:48:57 (GMT) |
| commit | c05b753e95acd78de9a753efa54a5ed808bd546f (patch) | |
| tree | 71f4c2c5690e3a676df5c1702b6f7510de2c034c | |
| parent | f332c17690d0bcdcb01c334c0554c4e2a5c664a1 (diff) | |
| download | tcl-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.
| -rw-r--r-- | unix/Makefile.in | 4 |
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 |
