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:
parent
0b4dfd8193
commit
7849d02214
@ -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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user