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/txinfo24.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/txinfo24.sh')
-rwxr-xr-x | t/txinfo24.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/txinfo24.sh b/t/txinfo24.sh index c613bd693..af426d73c 100755 --- a/t/txinfo24.sh +++ b/t/txinfo24.sh @@ -48,7 +48,7 @@ mkdir build cd build ../configure $MAKE -test ! -f ../main.info +test ! -e ../main.info test -f main.info cd .. @@ -74,7 +74,7 @@ cd build $MAKE # main.info should be rebuilt in the current directory. test -f main.info -test ! -f ../main.info +test ! -e ../main.info $MAKE dvi test -f main.dvi |