From: Akim Demaille Date: Tue, 13 Nov 2001 12:03:11 +0000 (+0000) Subject: * tests/tools.at: Use absolute paths, since we are no longer run X-Git-Tag: AUTOCONF-2.52g~60 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=1f3be9375881c0062c2382b7df7cfea73bd60c36;p=thirdparty%2Fautoconf.git * tests/tools.at: Use absolute paths, since we are no longer run in place. --- diff --git a/ChangeLog b/ChangeLog index a0b097af6..ab4c73f9a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-11-13 Akim Demaille + + * tests/tools.at: Use absolute paths, since we are no longer run + in place. + 2001-11-13 Akim Demaille Now that tests are running in their own private dir, there is no diff --git a/tests/tools.at b/tests/tools.at index cd6cdf010..fa57e32ea 100644 --- a/tests/tools.at +++ b/tests/tools.at @@ -73,12 +73,12 @@ AT_CHECK([/bin/sh ./syntax.sh]) # Specify the path to the tool, some shells don't honor PATH when # running `sh PROG'. -AT_CHECK([/bin/sh -n ../bin/autoconf], 0) +AT_CHECK([/bin/sh -n $top_buildpath/bin/autoconf], 0) # These are not built, they are in the src tree. -AT_CHECK([/bin/sh -n $top_srcdir/config/install-sh], 0) -AT_CHECK([/bin/sh -n $top_srcdir/config/mkinstalldirs], 0) -AT_CHECK([/bin/sh -n $top_srcdir/config/missing], 0) +AT_CHECK([/bin/sh -n $top_srcpath/config/install-sh], 0) +AT_CHECK([/bin/sh -n $top_srcpath/config/mkinstalldirs], 0) +AT_CHECK([/bin/sh -n $top_srcpath/config/missing], 0) AT_CLEANUP @@ -96,7 +96,7 @@ AT_SETUP([Syntax of the Perl scripts]) # | ./autom4te syntax OK # Ignore it, it might change between releases. m4_define([AT_CHECK_PERL_SYNTAX], -[AT_CHECK([autom4te_perllibdir=$top_srcdir/lib $PERL -c ../bin/$1], +[AT_CHECK([autom4te_perllibdir=$top_srcpath/lib $PERL -c $top_buildpath/bin/$1], 0, [], [ignore])]) AT_CHECK_PERL_SYNTAX([autoheader])