Software /
code /
prosody
Changeset
9421:03b50f5bd8cd
configure: Replace logic constructs with explicit if/else statements
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Mon, 01 Oct 2018 15:32:47 +0100 |
parents | 9420:3b8c4b2c6ba1 |
children | 9422:b7aad88c537b |
files | configure |
diffstat | 1 files changed, 10 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Mon Oct 01 15:31:14 2018 +0100 +++ b/configure Mon Oct 01 15:32:47 2018 +0100 @@ -418,8 +418,16 @@ if [ "$lua_interp_found" != "yes" -a "$RUNWITH_SET" != "yes" ] then - [ "$LUA_VERSION_SET" ] && { interp="Lua $LUA_VERSION" ;} || { interp="Lua" ;} - [ "$LUA_DIR_SET" -o "$LUA_BINDIR_SET" ] && { where="$LUA_BINDIR" ;} || { where="\$PATH" ;} + if [ "$LUA_VERSION_SET" ]; then + 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" die "You may want to use the flags --with-lua, --with-lua-bin and/or --lua-suffix. See --help." fi