[SCM] GNU Autoconf source repository branch, master, updated. v2.64-73-g9c23356
"Ralf Wildenhues" <[email protected]>
| Newsgroups | gmane.comp.sysutils.autoconf.cvs |
|---|---|
| Message-ID | <[email protected]> |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Autoconf source repository".
http://git.sv.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=9c233566199e12882a6400ebc984e99dff977a8b
The branch, master has been updated
via 9c233566199e12882a6400ebc984e99dff977a8b (commit)
from d2fb059fd3a9daa27cbb55c7b15ce43a4b5ff600 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 9c233566199e12882a6400ebc984e99dff977a8b
Author: Ralf Wildenhues <[email protected]>
Date: Sat Oct 31 08:46:58 2009 +0100
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 <[email protected]>
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 8 ++++++++
tests/c.at | 4 ++--
tests/fortran.at | 4 ++--
3 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 45ef1bb..3351e3a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2009-10-31 Ralf Wildenhues <[email protected]>
+
+ 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 <[email protected]>
Ralf Wildenhues <[email protected]>
diff --git a/tests/c.at b/tests/c.at
index 78edf45..34f83ae 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 151b13f..d511e3d 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])
hooks/post-receive
--
GNU Autoconf source repository