]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* tests/tools.at: Use absolute paths, since we are no longer run
authorAkim Demaille <akim@epita.fr>
Tue, 13 Nov 2001 12:03:11 +0000 (12:03 +0000)
committerAkim Demaille <akim@epita.fr>
Tue, 13 Nov 2001 12:03:11 +0000 (12:03 +0000)
in place.

ChangeLog
tests/tools.at

index a0b097af6497a9767da7da1f5af06def609baaf4..ab4c73f9a9008680175c2c0d96e3ebeb10a97da8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2001-11-13  Akim Demaille  <akim@epita.fr>
+
+       * tests/tools.at: Use absolute paths, since we are no longer run
+       in place.
+
 2001-11-13  Akim Demaille  <akim@epita.fr>
 
        Now that tests are running in their own private dir, there is no
index cd6cdf01092e6b2acddfd4e7c107e09b79d0f6c6..fa57e32eafd0cba7e454cedc13a73da2d0377bfa 100644 (file)
@@ -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])