aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-04-15 02:06:42 +0200
committerKim Alvefur <zash@zash.se>2017-04-15 02:06:42 +0200
commit368d066955a945587706cf80c7f9ca6e04ea52c8 (patch)
treef36931b90b43b78406c3288e0ebe086cae23ac79 /configure
parent656c5d45a1bfd3d53a2e3b675fbd95c870b170aa (diff)
downloadprosody-368d066955a945587706cf80c7f9ca6e04ea52c8.tar.gz
prosody-368d066955a945587706cf80c7f9ca6e04ea52c8.zip
configure: Fix explanation of where it looked for an interpreter (luarocks 3dcfa00, thanks Izaron)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 8b403161..c2c96bcd 100755
--- a/configure
+++ b/configure
@@ -428,7 +428,7 @@ fi
if [ "$lua_interp_found" != "yes" ]
then
[ "$LUA_VERSION_SET" ] && { interp="Lua $LUA_VERSION" ;} || { interp="Lua" ;}
- [ "$LUA_DIR_SET" -o "$LUA_BINDIR_SET" ] && { where="$LUA_BINDIR" ;} || { interp="\$PATH" ;}
+ [ "$LUA_DIR_SET" -o "$LUA_BINDIR_SET" ] && { where="$LUA_BINDIR" ;} || { where="\$PATH" ;}
echo "$interp interpreter not found in $where"
die "You may want to use the flags --with-lua, --with-lua-bin and/or --lua-suffix. See --help."
fi