diff options
author | Keith Seitz <keiths@redhat.com> | 2001-08-15 21:11:45 +0000 |
---|---|---|
committer | Keith Seitz <keiths@redhat.com> | 2001-08-15 21:11:45 +0000 |
commit | 942a4df220b9c1f06f017aa3b0a17de5df4c98b8 (patch) | |
tree | b17fe504d0ccf5174b179a4aa17ccbe521ca49e5 /gdb/testsuite/lib | |
parent | f0b743a914919068d84ebbfdc5ae4dbd3a9389bf (diff) | |
download | gdb-942a4df220b9c1f06f017aa3b0a17de5df4c98b8.zip gdb-942a4df220b9c1f06f017aa3b0a17de5df4c98b8.tar.gz gdb-942a4df220b9c1f06f017aa3b0a17de5df4c98b8.tar.bz2 |
* lib/gdb.exp (gdbtk_start): Don't set environment
variables for TCL_LIBRARY and friends. Insight will
now figure these out for itself.
Diffstat (limited to 'gdb/testsuite/lib')
-rw-r--r-- | gdb/testsuite/lib/gdb.exp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index 4949083..47b148c 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -1665,15 +1665,9 @@ proc gdbtk_start {test} { # Find absolute path to test set test [to_tcl_path -abs $test] - # Set environment variables for tcl libraries and such + # Set some environment variables cd $srcdir set abs_srcdir [pwd] - set env(GDBTK_LIBRARY) [to_tcl_path -abs [file join $abs_srcdir .. gdbtk library]] - set env(TCL_LIBRARY) [to_tcl_path -abs [file join $abs_srcdir .. .. tcl library]] - set env(TK_LIBRARY) [to_tcl_path -abs [file join $abs_srcdir .. .. tk library]] - set env(TIX_LIBRARY) [to_tcl_path -abs [file join $abs_srcdir .. .. tix library]] - set env(ITCL_LIBRARY) [to_tcl_path -abs [file join $abs_srcdir .. .. itcl itcl library]] - set env(CYGNUS_GUI_LIBRARY) [to_tcl_path -abs [file join .. $abs_srcdir .. .. libgui library]] set env(DEFS) [to_tcl_path -abs [file join $abs_srcdir $subdir defs]] cd $wd |