diff options
author | hobbs <hobbs> | 1999-09-21 06:37:22 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-09-21 06:37:22 (GMT) |
commit | 591b46b0f43c7fadc2dc6b4c0e47742497efa098 (patch) | |
tree | 455484bdc21de3881d73695e23da85d3f47b0de9 /tests | |
parent | 89420b81b99afdd1c68f441f4a099c2d9e4e290a (diff) | |
download | tcl-591b46b0f43c7fadc2dc6b4c0e47742497efa098.zip tcl-591b46b0f43c7fadc2dc6b4c0e47742497efa098.tar.gz tcl-591b46b0f43c7fadc2dc6b4c0e47742497efa098.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]
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); } |