From 16fa11bf9c38eaf30a9c05ab6e19e9e3c7979033 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 29 Mar 2023 11:48:02 -0700 Subject: Port 'make check' to platforms lacking libtool MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * t/get-sysconf.sh: Don’t fail if libtoolize is missing. --- t/get-sysconf.sh | 6 ++++-- 1 file 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 -- cgit v1.2.1