From: Tom Tromey Date: Tue, 10 Apr 2001 20:47:20 +0000 (+0000) Subject: 2001-04-10 Derek R. Price X-Git-Tag: handle-languages~69 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=e4b9b99519933c381ceeb0f56eb0a9d2e7ec49dd;p=automake.git 2001-04-10 Derek R. Price * tests/defs: Allow user to override AUTOMAKE and ACLOCAL. --- diff --git a/ChangeLog b/ChangeLog index 900d4c58..7a68a1e7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-04-10 Derek R. Price + + * tests/defs: Allow user to override AUTOMAKE and ACLOCAL. + 2001-04-10 Akim Demaille * distdir.am: Add a missing backslash. diff --git a/tests/defs b/tests/defs index d5d9a36c..1764d950 100644 --- a/tests/defs +++ b/tests/defs @@ -71,7 +71,7 @@ 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" +: ${AUTOMAKE-"$PERL ../../automake --amdir=$srcdir/.. --foreign"} # See how aclocal should be run. -ACLOCAL="$PERL ../../aclocal --acdir=$srcdir/../m4" +: ${ACLOCAL-"$PERL ../../aclocal --acdir=$srcdir/../m4"}