Skip to content

Commit e104f55

Browse files
Explorer09westes
authored andcommitted
travis: '--disable-acl' when building gettext
This silences a configure warning about libacl not found in Travis build log.
1 parent 6aa652b commit e104f55

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis/install-gettext.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ printf '%s *gettext-0.19.8.1.tar.lz\n' \
1616
tar xf gettext-0.19.8.1.tar.lz
1717
cd gettext-0.19.8.1
1818
# Don't flood Travis CI build log with dependency packages unless error occurs.
19-
./configure --quiet --prefix="$HOME" ||
19+
# libacl is not used in this Travis build system.
20+
./configure --quiet --prefix="$HOME" --disable-acl ||
2021
{ s=$? && cat config.log && (exit $s); }
2122
make -s V=0 >/dev/null 2>&1 || make -s V=1
2223
make -s install >make_install.log 2>&1 ||

0 commit comments

Comments
 (0)