From: Paul Eggert Date: Wed, 29 Mar 2023 18:48:02 +0000 (-0700) Subject: Port 'make check' to platforms lacking libtool X-Git-Tag: v1.16i~59 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=16fa11bf9c38eaf30a9c05ab6e19e9e3c7979033;p=thirdparty%2Fautomake.git Port 'make check' to platforms lacking libtool * t/get-sysconf.sh: Don’t fail if libtoolize is missing. --- 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