Browse Source

fix shared lib search path issue (#1109)

The shared lib file, libsodium.so, could not be found in default share object file path.

The default libsodium.git install files into /usr/local/lib, which is NOT found by system defaults.
pull/1111/head
Kim 8 years ago
committed by Max Lv
parent
commit
51785ece25
1 changed files with 1 additions and 1 deletions
  1. 2
      .travis.yml

2
.travis.yml

@ -7,7 +7,7 @@ before_install:
- git clone https://github.com/jedisct1/libsodium
- pushd libsodium
- ./autogen.sh
- ./configure && make
- ./configure --prefix=/usr && make
- sudo make install
- popd
addons:

Loading…
Cancel
Save