summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2013-12-26 16:52:06 +0100
committerStefano Lattarini <stefano.lattarini@gmail.com>2013-12-26 16:52:06 +0100
commit09cbe67d3a5fea8774d529f41577e32b4b1ba81c (patch)
tree9b8ecd2d011b293d473bf1a2583ef929772e0de7
parent50a08a2bc300d600603cdb5b5756baf71b9b431a (diff)
downloadautomake-09cbe67d3a5fea8774d529f41577e32b4b1ba81c.tar.gz
tests: fix a spurious failure on Mac OS X
This change fixes bug#14706. * lib/depcomp2.sh: Also cater to spurious diagnostic from GNU rm, not only from Apple's rm. Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
-rw-r--r--t/depcomp2.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/depcomp2.sh b/t/depcomp2.sh
index 3eba12d6c..3baaebfdd 100644
--- a/t/depcomp2.sh
+++ b/t/depcomp2.sh
@@ -47,7 +47,7 @@ $AUTOCONF
cat stderr >&2
# Ignore warning messages sometimes seen on Mac OS X; they are
# not automake's fault anyway, but either autoconf's or Mac's.
-sed '/rm:.* conftest\.dSYM/d' stderr >stderr2
+sed '/rm:.*conftest\.dSYM/d' stderr >stderr2
test -s stderr2 && { cat stderr2; exit 1; }
: