summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-06-28 22:53:03 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-06-28 23:34:53 +0200
commit872113f7803150af12e757515a64aca24cc7d409 (patch)
treef2982c720e457cf69a6e920248c45d055b8197e3
parentf7b3752bdb1763d2bae2452849735fbca5b73758 (diff)
downloadautomake-872113f7803150af12e757515a64aca24cc7d409.tar.gz
cosmetics: improve wording of a couple of configure messages
* 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.lattarini@gmail.com>
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 55346d007..b79f1e768 100644
--- a/configure.ac
+++ b/configure.ac
@@ -317,12 +317,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], [])