blob: 214207de65f62e2b86672a4be20830293f439ae9 [file] [log] [blame]
# -*- sh -*-
# Defines for Libtool testing environment.
# Gord Matzigkeit <gord@gnu.ai.mit.edu>, 1996
# Check that srcdir is set to an absolute path.
case "$srcdir" in
/* | [A-Za-z]:\\*) ;;
*) srcdir=`cd $srcdir && pwd` ;;
esac
progname=`echo "$0" | sed 's%^.*/%%'`
libtool="../libtool"
make="${MAKE-make}"
prefix="./_inst"
if test "$need_prefix" = yes; then
# An absolute path to a test installation directory.
test -d $prefix || mkdir $prefix
prefix=`cd $prefix && pwd`
else
test -d $prefix && rm -rf $prefix
prefix=NONE
fi
# See how redirections should work.
case "$VERBOSE" in
NO | no | 0 | "")
exec > /dev/null 2>&1
;;
esac
echo "=== Running $progname"