diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-06-30 13:42:10 +0200 |
---|---|---|
committer | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-06-30 13:42:10 +0200 |
commit | e2f007f0c78e011c5fab60bfad332f6aad0989f1 (patch) | |
tree | be80565c69b2d10304151e39afdc6772c888e7d7 /t/python-pr10995.sh | |
parent | 8c784651a7da7dc85bd989e75ce63e35762ce27f (diff) | |
parent | 9238349c18f1a6f73c32d1e8b62fb5cfaa83bd06 (diff) | |
download | automake-e2f007f0c78e011c5fab60bfad332f6aad0989f1.tar.gz |
Merge branch 'maint'
* maint:
tests: fix a spurious failure
configure: fix detection of POSIX shell to work in a VPATH build
tests: prefer "test ! -e FILE" to check that a file doesn't exist
Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 't/python-pr10995.sh')
-rwxr-xr-x | t/python-pr10995.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/python-pr10995.sh b/t/python-pr10995.sh index a822ce1e5..c530a13d9 100755 --- a/t/python-pr10995.sh +++ b/t/python-pr10995.sh @@ -48,8 +48,8 @@ test -f py-compile $MAKE install test -f inst/py/yes.py test -f inst/py/yes.pyc -test ! -f inst/py/no.py -test ! -f inst/py/no.pyc +test ! -e inst/py/no.py +test ! -e inst/py/no.pyc $MAKE disttest |