diff options
author | dgp <dgp@users.sourceforge.net> | 2008-12-31 18:22:04 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-12-31 18:22:04 (GMT) |
commit | 337a6648fee48d63d97c16579b72703b39647564 (patch) | |
tree | 578481a679d1e87f7bc749a7353ffe04d0613759 /unix/Makefile.in | |
parent | a7b4a7560837d1f6f303dc6ee53db1a2c849aebb (diff) | |
download | tcl-337a6648fee48d63d97c16579b72703b39647564.zip tcl-337a6648fee48d63d97c16579b72703b39647564.tar.gz tcl-337a6648fee48d63d97c16579b72703b39647564.tar.bz2 |
* unix/Makefile.in: Set TCLLIBPATH in SHELL_ENV so that targets
like `make shell` have access to builds of bundled packages.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 799ee0e..070b472 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -4,7 +4,7 @@ # "./configure", which is a configuration script generated by the "autoconf" # program (constructs like "@foo@" will get replaced in the actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.258 2008/12/22 15:45:43 dgp Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.259 2008/12/31 18:22:04 dgp Exp $ VERSION = @TCL_VERSION@ MAJOR_VERSION = @TCL_MAJOR_VERSION@ @@ -617,6 +617,7 @@ tclsh: ${TCLSH_OBJS} ${TCL_LIB_FILE} # This keeps tcltest from picking up an already installed version of the Tcl # library. SHELL_ENV = @LD_LIBRARY_PATH_VAR@=`pwd`:${@LD_LIBRARY_PATH_VAR@} \ + TCLLIBPATH="@abs_builddir@/pkgs" \ TCL_LIBRARY="${TCL_BUILDTIME_LIBRARY}" tcltest: ${TCLTEST_OBJS} ${TCL_LIB_FILE} ${BUILD_DLTEST} |