From e104f5589c2365d5927de00d6a990ec33ef29493 Mon Sep 17 00:00:00 2001 From: Explorer09 Date: Fri, 23 Feb 2018 02:45:01 +0800 Subject: [PATCH] travis: '--disable-acl' when building gettext This silences a configure warning about libacl not found in Travis build log. --- .travis/install-gettext.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis/install-gettext.sh b/.travis/install-gettext.sh index 7eb8331..1c44b79 100755 --- a/.travis/install-gettext.sh +++ b/.travis/install-gettext.sh @@ -16,7 +16,8 @@ printf '%s *gettext-0.19.8.1.tar.lz\n' \ tar xf gettext-0.19.8.1.tar.lz cd gettext-0.19.8.1 # Don't flood Travis CI build log with dependency packages unless error occurs. -./configure --quiet --prefix="$HOME" || +# libacl is not used in this Travis build system. +./configure --quiet --prefix="$HOME" --disable-acl || { s=$? && cat config.log && (exit $s); } make -s V=0 >/dev/null 2>&1 || make -s V=1 make -s install >make_install.log 2>&1 || -- 2.40.0