From f32b346d84dd03a3b0178749916cc32bf6cde408 Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Thu, 14 Nov 2002 11:09:51 +0000 Subject: [PATCH] * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit status of the compiler. Calling `exit 1' is no longer needed. Reported by Nelson H. F. Beebe. --- ChangeLog | 1 + tests/synclines.at | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 90cf9337..6336f9ff 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * tests/synclines.at (AT_SYNCLINES_COMPILE): Ignore the exit status of the compiler. + Calling `exit 1' is no longer needed. Reported by Nelson H. F. Beebe. 2002-11-14 Akim Demaille diff --git a/tests/synclines.at b/tests/synclines.at index bf266236..0128e6b8 100644 --- a/tests/synclines.at +++ b/tests/synclines.at @@ -26,7 +26,7 @@ AT_BANNER([[User Actions.]]) # (e.g. c89 on IRIX 6.5) triger warnings on `#error', instead of # errors. m4_define([AT_SYNCLINES_COMPILE], -[AT_CHECK([$CC $CFLAGS $CPPFLAGS -c $1 || (exit 1)], [ignore], [], [stderr]) +[AT_CHECK([$CC $CFLAGS $CPPFLAGS -c $1], [ignore], [], [stderr]) # In case GCC displays column information, strip it down. # # input.y:4:2: #error "4" or input.y:4.2: #error "4" -- 2.45.2