diff options
author | Kim Alvefur <zash@zash.se> | 2019-05-04 22:48:59 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-05-04 22:48:59 +0200 |
commit | 8fd66538f60d02b3778f1037dce9bda864874476 (patch) | |
tree | da095d9acd5276e3fd65bdb872c2e7265bcfbb7d | |
parent | 36957928e1a7911c6dd19e58020c85512b47795d (diff) | |
download | prosody-8fd66538f60d02b3778f1037dce9bda864874476.tar.gz prosody-8fd66538f60d02b3778f1037dce9bda864874476.zip |
configure: Handle lua being found in /bin (workaround for #1353)
-rwxr-xr-x | configure | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -419,6 +419,13 @@ else } fi +# See #1353 +if [ "$LUA_DIR_SET" != "yes" ] && [ "$LUA_DIR" = "/" ] +then + LUA_DIR="/usr" +fi + + if [ "$lua_interp_found" != "yes" ] && [ "$RUNWITH_SET" != "yes" ] then if [ "$LUA_VERSION_SET" ]; then |