diff options
Diffstat (limited to 't/ltorder.sh')
-rwxr-xr-x | t/ltorder.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/ltorder.sh b/t/ltorder.sh index 358e620fe..59047a0a6 100755 --- a/t/ltorder.sh +++ b/t/ltorder.sh @@ -49,7 +49,7 @@ $ACLOCAL $AUTOCONF $AUTOMAKE --add-missing -./configure "--prefix=`pwd`/inst" +./configure --prefix="$(pwd)/inst" $MAKE $MAKE install 2>stderr || { cat stderr >&2; Exit 1; } @@ -57,6 +57,6 @@ cat stderr >&2 grep 'has not been installed' stderr && Exit 1 $MAKE uninstall -test `find inst -type f -print | wc -l` -eq 0 +test $(find inst -type f -print | wc -l) -eq 0 : |