* tests/atgeneral.m4 (AT_CHECK): Fix a redirection problem.

This commit is contained in:
Akim Demaille 2000-07-07 12:56:02 +00:00
parent a90ca1c7e6
commit 42944c4fc3
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2000-07-07 François Pinard <pinard@iro.umontreal.ca>
* tests/atgeneral.m4 (AT_CHECK): Fix a redirection problem.
2000-07-07 Akim Demaille <akim@epita.fr>
AC_REVISION must not AC_REQUIRE AC_INIT, it leaves the diversions

View File

@ -361,7 +361,7 @@ ifelse([$2],,,
[at_status=$?
if test $at_status != $2; then
dnl Maybe there was an important message to read before it died.
test -n "$at_verbose" && cat stderr >&6
test -n "$at_verbose" && test -z "$at_no_redirs" && cat stderr >&6
dnl Exit with the same code, at least to preserve 77.
exit $at_status
fi

View File

@ -361,7 +361,7 @@ ifelse([$2],,,
[at_status=$?
if test $at_status != $2; then
dnl Maybe there was an important message to read before it died.
test -n "$at_verbose" && cat stderr >&6
test -n "$at_verbose" && test -z "$at_no_redirs" && cat stderr >&6
dnl Exit with the same code, at least to preserve 77.
exit $at_status
fi