Build script: make sure we find any library that we installed

Somehow libssh2 wasn't found on Mac builds - this makes sure we always add
the $INSTALL_ROOT/lib as library path.

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2015-08-16 12:35:25 -07:00
parent 79f3f18ef6
commit 0a67f7cc95

View file

@ -201,5 +201,5 @@ if [ $PLATFORM = Darwin ] ; then
rm -rf Subsurface.app
fi
make -j4
make install
LIBRARY_PATH=$INSTALL_ROOT/lib make -j4
LIBRARY_PATH=$INSTALL_ROOT/lib make install