1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

(TEST_SUITE_DIR): Fix bug: Use `top_srcdir'.

(GUILE_LOAD_PATH): No longer include $top_srcdir.
This commit is contained in:
Thien-Thi Nguyen 2002-02-05 10:32:35 +00:00
parent ec5e172228
commit ae84ee626e

View file

@ -13,22 +13,21 @@ set -e
# this script runs in the top-level build-dir.
top_builddir=`pwd`
top_srcdir=@top_srcdir@
TEST_SUITE_DIR=$top_builddir/test-suite
TEST_SUITE_DIR=${top_srcdir}/test-suite
if [ x"$1" = x-i ] ; then
guile=$2
guile_opts=
shift
shift
GUILE_LOAD_PATH=$TEST_SUITE_DIR
else
guile=${top_srcdir}/pre-inst-guile
guile_opts="${top_builddir}"
GUILE_LOAD_PATH=${top_builddir}:$TEST_SUITE_DIR
fi
GUILE_LOAD_PATH=$TEST_SUITE_DIR
export GUILE_LOAD_PATH
if [ -f "$guile" -a -x "$guile" ] ; then