[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[automake-commit] 04/04: Port 'make check' to platforms lacking libtool
From: |
Paul Eggert |
Subject: |
[automake-commit] 04/04: Port 'make check' to platforms lacking libtool |
Date: |
Wed, 29 Mar 2023 15:16:42 -0400 |
eggert pushed a commit to branch master
in repository automake.
View the commit online:
https://git.savannah.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=16fa11bf9c38eaf30a9c05ab6e19e9e3c7979033
commit 16fa11bf9c38eaf30a9c05ab6e19e9e3c7979033
Author: Paul Eggert <eggert@cs.ucla.edu>
AuthorDate: Wed Mar 29 11:48:02 2023 -0700
Port 'make check' to platforms lacking libtool
* 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