summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Ippolito <bob@redivi.com>2018-07-10 23:16:13 +0000
committerBob Ippolito <bob@redivi.com>2018-07-10 23:16:13 +0000
commitf48f396ce32f4f62e18980c025c21f9cfb3e2cf5 (patch)
treee4f8cdda9aa6cfe8a3088a975602047454f3b674
parent8cb0c703a6e1d8bc903cbc46016b766df2a8c592 (diff)
downloadxattr-f48f396ce32f4f62e18980c025c21f9cfb3e2cf5.tar.gz
more travis experimentation
-rwxr-xr-x.travis/install.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis/install.sh b/.travis/install.sh
index 10e26ba..98529d8 100755
--- a/.travis/install.sh
+++ b/.travis/install.sh
@@ -13,7 +13,9 @@ if [[ -n "$PYENV_VERSION" ]]; then
eval "$(pyenv init -)"
pyenv install --list
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
- CFLAGS="-I$(xcrun --show-sdk-path)/usr/include $CFLAGS" pyenv install -s "$PYENV_VERSION"
+ CFLAGS="-I$(xcrun --show-sdk-path)/usr/include /usr/local/opt/expat/include $CFLAGS" \
+ LDFLAGS="-L$(xcrun --show-sdk-path)/usr/lib /usr/local/opt/expat/lib $LDFLAGS" \
+ pyenv install -s "$PYENV_VERSION"
else
pyenv install -s "$PYENV_VERSION"
fi