travis: '--disable-acl' when building gettext

This silences a configure warning about libacl not found in Travis
build log.
This commit is contained in:
Explorer09 2018-02-23 02:45:01 +08:00 committed by Will Estes
parent 6aa652b089
commit e104f5589c

View File

@ -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 ||