diff options
author | Peter Powell <petpow@saberuk.com> | 2016-07-28 15:32:13 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2016-07-28 15:32:13 +0100 |
commit | fe3b48692af9d633da2e92b581f5ad859788f423 (patch) | |
tree | 50310e2106df843eb4504668992851eae18a6194 /tools | |
parent | 1f25ec70d144d85e28ec4d2769fefd8abb00cbca (diff) |
Force link sqlite3 on OS X when doing Travis builds.
The system version of this library does not include support for pkg-config.
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/travis-ci.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/travis-ci.sh b/tools/travis-ci.sh index 6fb6f22ca..6dbc82300 100755 --- a/tools/travis-ci.sh +++ b/tools/travis-ci.sh @@ -8,6 +8,7 @@ elif [ "$TRAVIS_OS_NAME" = "osx" ] then brew update brew install geoip gnutls mysql-connector-c openssl pcre postgresql sqlite3 tre + brew link sqlite3 --force else >&2 echo "'$TRAVIS_OS_NAME' is an unknown Travis CI environment!" exit 1 |