diff options
author | hobbs <hobbs@noemail.net> | 1999-09-21 06:37:21 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 1999-09-21 06:37:21 (GMT) |
commit | cb015d34d106f8928524d7bff5168b2f2b717279 (patch) | |
tree | 455484bdc21de3881d73695e23da85d3f47b0de9 /tests | |
parent | 4ca3696539c53fb7939ae01bec77ae87fdd86b2c (diff) | |
download | tcl-cb015d34d106f8928524d7bff5168b2f2b717279.zip tcl-cb015d34d106f8928524d7bff5168b2f2b717279.tar.gz tcl-cb015d34d106f8928524d7bff5168b2f2b717279.tar.bz2 |
1999-09-20 Jeff Hobbs <hobbs@scriptics.com>
* tests/env.test:
* unix/Makefile.in: added support for AIX LIBPATH env var [Bug: 2793]
removed second definition of INCLUDE_INSTALL_DIR (the one that
referenced @includedir@) [Bug: 2805]
* unix/dltest/Makefile.in: added -lc to LIBS [Bug: 2794]
FossilOrigin-Name: 8e69ad39489a35f62f82986d61d06fa15abea1cc
Diffstat (limited to 'tests')
-rw-r--r-- | tests/env.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/env.test b/tests/env.test index e65b844..087a23b 100644 --- a/tests/env.test +++ b/tests/env.test @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: env.test,v 1.10 1999/08/27 21:45:17 jenn Exp $ +# RCS: @(#) $Id: env.test,v 1.11 1999/09/21 06:37:26 hobbs Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -78,7 +78,7 @@ puts $f { lrem names ComSpec lrem names "" } - foreach name {TCL_LIBRARY PATH LD_LIBRARY_PATH PURE_PROG_NAME DISPLAY SHLIB_PATH } { + foreach name {TCL_LIBRARY PATH LD_LIBRARY_PATH LIBPATH PURE_PROG_NAME DISPLAY SHLIB_PATH } { lrem names $name } foreach p $names { @@ -107,7 +107,7 @@ foreach name [array names env] { # Added the following lines so that child tcltest can actually find its # library if the initial tcltest is run from a non-standard place. # ('saved' env vars) -foreach name {TCL_LIBRARY PATH LD_LIBRARY_PATH DISPLAY SHLIB_PATH} { +foreach name {TCL_LIBRARY PATH LD_LIBRARY_PATH LIBPATH DISPLAY SHLIB_PATH} { if {[info exists env2($name)]} { set env($name) $env2($name); } |