diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-12-26 16:52:06 +0100 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2013-12-26 16:52:06 +0100 |
commit | 09cbe67d3a5fea8774d529f41577e32b4b1ba81c (patch) | |
tree | 9b8ecd2d011b293d473bf1a2583ef929772e0de7 /t/depcomp2.sh | |
parent | 50a08a2bc300d600603cdb5b5756baf71b9b431a (diff) | |
download | automake-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>
Diffstat (limited to 't/depcomp2.sh')
-rw-r--r-- | t/depcomp2.sh | 2 |
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; } : |