summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2023-03-29 11:48:02 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2023-03-29 12:16:18 -0700
commit16fa11bf9c38eaf30a9c05ab6e19e9e3c7979033 (patch)
tree1c111d88ae4cca0062048ce993ccae5ccc4c5262
parente1b3b70447254d815c489978681238abb0c91357 (diff)
downloadautomake-16fa11bf9c38eaf30a9c05ab6e19e9e3c7979033.tar.gz
Port 'make check' to platforms lacking libtool
* t/get-sysconf.sh: Don’t fail if libtoolize is missing.
-rw-r--r--t/get-sysconf.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/t/get-sysconf.sh b/t/get-sysconf.sh
index 016e60491..f448e8585 100644
--- a/t/get-sysconf.sh
+++ b/t/get-sysconf.sh
@@ -48,8 +48,10 @@ $PERL -e 'use TAP::Parser; print $TAP::Parser::VERSION, "\n"' || :
$AUTOCONF --version
$AUTOCONF --help
-libtoolize --version
-libtoolize --help
+
+# It's OK if libtool is missing, as the relevant tests skip.
+libtoolize --version || :
+libtoolize --help || :
# It's OK if the selected Lex and Yacc programs don't know how to print
# the version number or the help screen; those are usually available only