aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-03-03 11:51:32 +0100
committerKim Alvefur <zash@zash.se>2017-03-03 11:51:32 +0100
commitc284110cb40cb2347f82e974f76eb6bc6927e946 (patch)
tree85f99ed5cb7b513c1c838f420a20d09305a4f6d9
parentfdf81e53aa57c68f330deecf4f97cfefb05f5044 (diff)
downloadprosody-c284110cb40cb2347f82e974f76eb6bc6927e946.tar.gz
prosody-c284110cb40cb2347f82e974f76eb6bc6927e946.zip
configure: Fix setting libdir if prefix changed
-rwxr-xr-xconfigure5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure b/configure
index c416709d..1abd0a8d 100755
--- a/configure
+++ b/configure
@@ -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" ]