aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2018-10-01 15:32:47 +0100
committerMatthew Wild <mwild1@gmail.com>2018-10-01 15:32:47 +0100
commitd736a358fe84fec21c99a40155dcb7ff32c20847 (patch)
tree4f7c1670006d3d7054427032423bd5747e7751f0 /configure
parent4c512718657d678f72d3bfb4287abadbf9ad4d21 (diff)
downloadprosody-d736a358fe84fec21c99a40155dcb7ff32c20847.tar.gz
prosody-d736a358fe84fec21c99a40155dcb7ff32c20847.zip
configure: Replace logic constructs with explicit if/else statements
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure12
1 files changed, 10 insertions, 2 deletions
diff --git a/configure b/configure
index ed2fc12f..866faeb1 100755
--- a/configure
+++ b/configure
@@ -418,8 +418,16 @@ fi
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