From: Ralf Wildenhues Date: Sat, 31 Oct 2009 07:46:58 +0000 (+0100) Subject: Do not fail OpenMP tests on systems without aclocal. X-Git-Tag: v2.65~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c233566199e12882a6400ebc984e99dff977a8b;p=thirdparty%2Fautoconf.git Do not fail OpenMP tests on systems without aclocal. * tests/c.at (AC_OPENMP and C, AC_OPENMP and C++): Override `ACLOCAL=true' for autoreconf, the tests don't need aclocal. * tests/fortran.at (AC_OPENMP and Fortran 77) (AC_OPENMP and Fortran): Likewise. Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index 45ef1bb3..3351e3a3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2009-10-31 Ralf Wildenhues + + Do not fail OpenMP tests on systems without aclocal. + * tests/c.at (AC_OPENMP and C, AC_OPENMP and C++): Override + `ACLOCAL=true' for autoreconf, the tests don't need aclocal. + * tests/fortran.at (AC_OPENMP and Fortran 77) + (AC_OPENMP and Fortran): Likewise. + 2009-10-31 Bruno Haible Ralf Wildenhues diff --git a/tests/c.at b/tests/c.at index 78edf453..34f83ae0 100644 --- a/tests/c.at +++ b/tests/c.at @@ -369,7 +369,7 @@ int main () ]]) : ${MAKE=make} -AT_CHECK([autoreconf -vi], [], [ignore], [ignore]) +AT_CHECK([env ACLOCAL=true autoreconf -vi], [], [ignore], [ignore]) AT_CHECK([./configure $configure_options], [], [ignore], [ignore]) AT_CHECK([$MAKE], [], [ignore], [ignore]) @@ -412,7 +412,7 @@ AT_DATA([foo.cpp], ]]) : ${MAKE=make} -AT_CHECK([autoreconf -vi], [], [ignore], [ignore]) +AT_CHECK([env ACLOCAL=true autoreconf -vi], [], [ignore], [ignore]) AT_CHECK([./configure $configure_options], [], [ignore], [ignore]) AT_CHECK([$MAKE], [], [ignore], [ignore]) diff --git a/tests/fortran.at b/tests/fortran.at index 151b13f6..d511e3d2 100644 --- a/tests/fortran.at +++ b/tests/fortran.at @@ -108,7 +108,7 @@ AT_DATA([foo.f], ]]) : ${MAKE=make} -AT_CHECK([autoreconf -vi], [], [ignore], [ignore]) +AT_CHECK([env ACLOCAL=true autoreconf -vi], [], [ignore], [ignore]) AT_CHECK([./configure $configure_options], [], [ignore], [ignore]) AT_CHECK([$MAKE], [], [ignore], [ignore]) @@ -148,7 +148,7 @@ AT_DATA([foo.f], ]]) : ${MAKE=make} -AT_CHECK([autoreconf -vi], [], [ignore], [ignore]) +AT_CHECK([env ACLOCAL=true autoreconf -vi], [], [ignore], [ignore]) AT_CHECK([./configure $configure_options], [], [ignore], [ignore]) AT_CHECK([$MAKE], [], [ignore], [ignore])