* configure.ac: Fix a couple of messages so that the configure output changes from this:
checking whether /bin/sh "set -e" preserves exit traps... yes checking whether /bin/sh "set -x" corrupts stderr... no to this: checking whether /bin/sh preserves exit traps with "set -e"... yes checking whether /bin/sh corrupts stderr with "set -x"... no Signed-off-by: Stefano Lattarini <stefano.lattar...@gmail.com> --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 04658a5..ef6030b 100644 --- a/configure.ac +++ b/configure.ac @@ -323,12 +323,12 @@ AC_DEFUN([_AM_CHECK_CANDIDATE_SHELL], [], [am_score=1; break]) _AM_CHECK_SHELL_FEATURE([$1], - ["set -e" preserves exit traps], + [preserves exit traps with "set -e"], [set -e; trap 'exit $?' 0; (exit 77); exit 77], [], [am_score=1; break]) _AM_CHECK_SHELL_FEATURE([$1], - ["set -x" corrupts stderr], + [corrupts stderr with "set -x"], [(set -x; P=1 true 2>&3) 3>&1 2>/dev/null | grep P=1], [am_score=9], []) -- 1.7.9.5