From 728acb39995d6cbf87c768b24a4569e25be3adce Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 11 Apr 2001 04:13:07 +0000 Subject: [PATCH] * tests/defs: Changed how ACLOCAL and AUTOMAKE are set. --- ChangeLog | 4 ++++ tests/defs | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7a68a1e7..12f0c0ee 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 1764d950..6a162e31 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" -- 2.43.5