diff options
author | Jacob Bachmeyer <jcb62281+dev@gmail.com> | 2020-05-28 18:34:47 -0500 |
---|---|---|
committer | Jacob Bachmeyer <jcb62281+dev@gmail.com> | 2020-05-28 18:34:47 -0500 |
commit | 10191e1d8d56dae0999fe8d1438fd04537249f41 (patch) | |
tree | 0f5d85b3f1a9b71ba55374d56ccfefa2cef9524b | |
parent | 5405dc038da030364ccaecb0b13c8c3ba485b380 (diff) | |
download | dejagnu-10191e1d8d56dae0999fe8d1438fd04537249f41.zip dejagnu-10191e1d8d56dae0999fe8d1438fd04537249f41.tar.gz dejagnu-10191e1d8d56dae0999fe8d1438fd04537249f41.tar.bz2 |
Fix default value of libdir global
This was causing testsuite/runtest.main/stats.exp to fail unless the
DejaGnu sources were in a directory named dejagnu.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | runtest.exp | 5 |
2 files changed, 9 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2020-05-28 Jacob Bachmeyer <jcb62281+dev@gmail.com> + + PR 41585 + * runtest.exp (libdir): Fix default value of global variable. + 2020-05-26 Jacob Bachmeyer <jcb62281+dev@gmail.com> * doc/dejagnu.texi (target_compile procedure): Add documentation. diff --git a/runtest.exp b/runtest.exp index 6a53a56..9380732 100644 --- a/runtest.exp +++ b/runtest.exp @@ -700,7 +700,10 @@ verbose "Testsuite root is $testsuitedir" verbose "Tool root directory is $tool_root_dir" set execpath [file dirname $argv0] -set libdir [file dirname $execpath]/dejagnu + +# The runtest.exp file is installed directly in libdir. +# Conveniently, the source tree layout is the same as the installed libdir. +set libdir [file dirname $argv0] if {[info exists env(DEJAGNULIBS)]} { set libdir $env(DEJAGNULIBS) } |