diff options
Diffstat (limited to 't/nobase-libtool.sh')
-rwxr-xr-x | t/nobase-libtool.sh | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/t/nobase-libtool.sh b/t/nobase-libtool.sh index 38008cd0a..163ffd36f 100755 --- a/t/nobase-libtool.sh +++ b/t/nobase-libtool.sh @@ -54,8 +54,7 @@ EOF mkdir sub cat >source.c <<'EOF' -int -main (int argc, char *argv[]) +int main (int argc, char *argv[]) { return 0; } @@ -68,14 +67,14 @@ libtoolize $ACLOCAL $AUTOCONF $AUTOMAKE -a --copy -./configure --prefix "`pwd`/inst" --program-prefix=p +./configure --prefix "$(pwd)/inst" --program-prefix=p $MAKE $MAKE test-install-data $MAKE test-install-exec $MAKE uninstall -test `find inst/foo -type f -print | wc -l` = 0 +test $(find inst/foo -type f -print | wc -l) -eq 0 $MAKE install-strip @@ -85,11 +84,11 @@ $MAKE uninstall $MAKE distclean mkdir build cd build -../configure --prefix "`pwd`/inst" --program-prefix=p +../configure --prefix "$(pwd)/inst" --program-prefix=p $MAKE $MAKE test-install-data $MAKE test-install-exec $MAKE uninstall -test `find inst/foo -type f -print | wc -l` = 0 +test $(find inst/foo -type f -print | wc -l) -eq 0 : |