From: Alexandre Duret-Lutz Date: Wed, 28 Nov 2001 12:30:16 +0000 (+0000) Subject: * tests/defs: Turn on shell traces when VERBOSE=x. X-Git-Tag: Release-1-5b~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55acdb1e383c1dfe09d016561b08903c2a817789;p=thirdparty%2Fautomake.git * tests/defs: Turn on shell traces when VERBOSE=x. --- diff --git a/ChangeLog b/ChangeLog index 19d80e2a9..50b8c0f7f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-11-28 Alexandre Duret-Lutz + + * tests/defs: Turn on shell traces when VERBOSE=x. + 2001-11-26 Tom Tromey * automake.texi (Assembly Support): Mention .s and .S as only diff --git a/tests/defs b/tests/defs index 6e7e16008..4dc6e2f52 100644 --- a/tests/defs +++ b/tests/defs @@ -125,3 +125,10 @@ case $required in ACLOCAL="$ACLOCAL -I $srcdir/../m4 -I $aclocaldir" ;; esac + +# Turn on shell traces when VERBOSE=x. +if test "x$VERBOSE" = xx; then + set -x +else + : +fi