* lib/autoconf/c.m4 (_AC_PROG_PREPROC_WORKS_IFELSE): Also remove conftest.i when preprocessor tests break out of a loop.
Signed-off-by: Eric Blake <[email protected]> --- Found it. Pushing this. But I ran out of time to complete the 2.67 release today, so it's now looking like the release happens tomorrow. ChangeLog | 6 ++++++ lib/autoconf/c.m4 | 2 +- 2 files changed, 7 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 43aebcc..ca33877 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-07-19 Eric Blake <[email protected]> + + Fix testsuite failures from previous patch. + * lib/autoconf/c.m4 (_AC_PROG_PREPROC_WORKS_IFELSE): Also remove + conftest.i when preprocessor tests break out of a loop. + 2010-07-19 Ralf Wildenhues <[email protected]> Allow inspecting AC_PREPROC_IFELSE output in true branch. diff --git a/lib/autoconf/c.m4 b/lib/autoconf/c.m4 index 8cc4e55..9a28adf 100644 --- a/lib/autoconf/c.m4 +++ b/lib/autoconf/c.m4 @@ -373,7 +373,7 @@ break]) done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. -rm -f conftest.err conftest.$ac_ext +rm -f conftest.i conftest.err conftest.$ac_ext AS_IF([$ac_preproc_ok], [$1], [$2]) ])# _AC_PROG_PREPROC_WORKS_IFELSE -- 1.7.1.1
