diff options
author | Kim Alvefur <zash@zash.se> | 2017-04-15 02:06:42 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-04-15 02:06:42 +0200 |
commit | f90ebb05c5449eadeb315e8f7f0eb69b27147162 (patch) | |
tree | f36931b90b43b78406c3288e0ebe086cae23ac79 /configure | |
parent | 2f0ac824b2ea1ad51c0edf01aaeb9382084f79de (diff) | |
download | prosody-f90ebb05c5449eadeb315e8f7f0eb69b27147162.tar.gz prosody-f90ebb05c5449eadeb315e8f7f0eb69b27147162.zip |
configure: Fix explanation of where it looked for an interpreter (luarocks 3dcfa00, thanks Izaron)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |