]> granicus.if.org Git - flex/commitdiff
travis: '--disable-acl' when building gettext
authorExplorer09 <explorer09@gmail.com>
Thu, 22 Feb 2018 18:45:01 +0000 (02:45 +0800)
committerWill Estes <westes575@gmail.com>
Thu, 1 Mar 2018 19:08:54 +0000 (14:08 -0500)
This silences a configure warning about libacl not found in Travis
build log.

.travis/install-gettext.sh

index 7eb8331b909f66bf62bad35541f0ffdbdacf6c13..1c44b792d4fedd59928c1d7a35c86016befea828 100755 (executable)
@@ -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 ||