Skip to content

Commit

Permalink
travis: '--disable-acl' when building gettext
Browse files Browse the repository at this point in the history
This silences a configure warning about libacl not found in Travis
build log.
  • Loading branch information
Explorer09 authored and westes committed Mar 1, 2018
1 parent 6aa652b commit e104f55
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis/install-gettext.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ||
Expand Down

0 comments on commit e104f55

Please sign in to comment.