From 51785ece2563c880e03cacb93eede9c703d5b03d Mon Sep 17 00:00:00 2001 From: Kim Date: Sat, 21 Jan 2017 18:19:57 +0800 Subject: [PATCH] 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. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1a0f40f6..bb07dea9 100644 --- a/.travis.yml +++ b/.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: