mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
configure: Replace logic constructs with explicit if/else statements
This commit is contained in:
parent
4c51271865
commit
d736a358fe
1 changed files with 10 additions and 2 deletions
12
configure
vendored
12
configure
vendored
|
@ -418,8 +418,16 @@ fi
|
||||||
|
|
||||||
if [ "$lua_interp_found" != "yes" -a "$RUNWITH_SET" != "yes" ]
|
if [ "$lua_interp_found" != "yes" -a "$RUNWITH_SET" != "yes" ]
|
||||||
then
|
then
|
||||||
[ "$LUA_VERSION_SET" ] && { interp="Lua $LUA_VERSION" ;} || { interp="Lua" ;}
|
if [ "$LUA_VERSION_SET" ]; then
|
||||||
[ "$LUA_DIR_SET" -o "$LUA_BINDIR_SET" ] && { where="$LUA_BINDIR" ;} || { where="\$PATH" ;}
|
interp="Lua $LUA_VERSION";
|
||||||
|
else
|
||||||
|
interp="Lua";
|
||||||
|
fi
|
||||||
|
if [ "$LUA_DIR_SET" -o "$LUA_BINDIR_SET" ]; then
|
||||||
|
where="$LUA_BINDIR";
|
||||||
|
else
|
||||||
|
where="\$PATH";
|
||||||
|
fi
|
||||||
echo "$interp interpreter not found in $where"
|
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."
|
die "You may want to use the flags --with-lua, --with-lua-bin and/or --lua-suffix. See --help."
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue