0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-15 10:18:01 +08:00

Do not use ldconfig in CI if running on OSX

ldconfig is not available on OSX, so Travis CI build fails
This commit is contained in:
Luca Boccassi 2015-08-01 19:13:20 +01:00
parent 0b4dfd8193
commit 7849d02214

View File

@ -7,7 +7,8 @@ before_script:
# libsodium
- git clone git://github.com/jedisct1/libsodium.git
- ( cd libsodium; ./autogen.sh; ./configure; make check; sudo make install; sudo ldconfig )
- ( cd libsodium; ./autogen.sh; ./configure; make check; sudo make install;
if [ $TRAVIS_OS_NAME != "osx" ] ; then sudo ldconfig ; fi )
# Build and check this project
script: