mirror of
git://git.sv.gnu.org/autoconf
synced 2025-03-31 15:00:26 +08:00
* tests/atgeneral.m4 (AT_CHECK): Fix a redirection problem.
This commit is contained in:
parent
a90ca1c7e6
commit
42944c4fc3
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user