From: Tom Tromey Date: Wed, 11 Apr 2001 04:13:08 +0000 (+0000) Subject: * tests/defs: Changed how ACLOCAL and AUTOMAKE are set. X-Git-Tag: handle-languages~68 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ce0a7d23e60deb31e63523c1093721a496cee76;p=thirdparty%2Fautomake.git * tests/defs: Changed how ACLOCAL and AUTOMAKE are set. --- diff --git a/ChangeLog b/ChangeLog index 7a68a1e72..12f0c0eef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-04-10 Tom Tromey + + * tests/defs: Changed how ACLOCAL and AUTOMAKE are set. + 2001-04-10 Derek R. Price * tests/defs: Allow user to override AUTOMAKE and ACLOCAL. diff --git a/tests/defs b/tests/defs index 1764d950e..6a162e317 100644 --- a/tests/defs +++ b/tests/defs @@ -71,7 +71,9 @@ echo "=== Running test $0" # See how Automake should be run. We put --foreign as the default # strictness to avoid having to create lots and lots of files. A test # can override this by specifying a different strictness. -: ${AUTOMAKE-"$PERL ../../automake --amdir=$srcdir/.. --foreign"} +test -z "$AUTOMAKE" \ + && AUTOMAKE="$PERL ../../automake --amdir=$srcdir/.. --foreign" # See how aclocal should be run. -: ${ACLOCAL-"$PERL ../../aclocal --acdir=$srcdir/../m4"} +test -z "$ACLOCAL" \ + && ACLOCAL="$PERL ../../aclocal --acdir=$srcdir/../m4"