2004-11-03 Alexandre Duret-Lutz <adl@gnu.org>
+ * tests/defs.in: Do not distinguish VERBOSE=x from
+ VERBOSE=anything_but_x, always turn on shell traces.
+
* aclocal.in (write_aclocal): Make sure $map_traced_defs{$m} exists
before using it. Suppress a warning observable in test/acloca16.test.
Report from Ralf Wildenhues.
# If srcdir is not set, then we are not running from `make check', be verbose.
if test -z "$srcdir"; then
- test -z "$VERBOSE" && VERBOSE=x
+ VERBOSE=x
# compute $srcdir.
srcdir=`echo "$0" | sed -e 's,/[^\\/]*$,,'`
test $srcdir = $0 && srcdir=.
AUTOMAKE_run 1 ${1+"$@"}
}
-# Turn on shell traces when VERBOSE=x.
-if test "x$VERBOSE" = xx; then
+# Turn on shell traces when VERBOSE is set.
+if test -n "$VERBOSE"; then
set -x
else
: