configure: Fix setting libdir if prefix changed

This commit is contained in:
Kim Alvefur 2017-03-03 11:51:32 +01:00
parent c0937dcdb4
commit 140c6de026

5
configure vendored
View file

@ -338,6 +338,11 @@ then
fi
fi
if [ "$PREFIX_SET" = "yes" -a ! "$LIBDIR_SET" = "yes" ]
then
LIBDIR=$PREFIX/lib
fi
detect_lua_version() {
detected_lua=`$1 -e 'print(_VERSION:match(" (5%.[123])$"))' 2> /dev/null`
if [ "$detected_lua" != "nil" ]