mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-12 10:33:52 +01: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
40e2befbbe
commit
20ba661019
@ -5,7 +5,8 @@ if [ $BUILD_TYPE == "default" ]; then
|
||||
|
||||
# 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
|
||||
./autogen.sh && ./configure --with-libsodium=yes && make && make check
|
||||
|
Loading…
Reference in New Issue
Block a user