diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-09-02 18:55:35 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-09-02 18:55:35 +0100 |
commit | ee2c04d00330a6ac76b6360d2d06b02bcc001546 (patch) | |
tree | 75ae2e07fd0ffea8a7063e9fbc3e5dbd0108d619 /configure | |
parent | 0944fb2e1b3c6b10fef40e93e0ba0ae72795acac (diff) | |
parent | 63f8291d160b050741e804e5a58e392381555e14 (diff) | |
download | prosody-ee2c04d00330a6ac76b6360d2d06b02bcc001546.tar.gz prosody-ee2c04d00330a6ac76b6360d2d06b02bcc001546.zip |
Merge 0.10->trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -227,7 +227,7 @@ find_program() { found="no" while [ "$item" ] do - if [ -e "$item/$1" ] + if [ -f "$item/$1" ] then found="yes" break @@ -250,7 +250,7 @@ then LUA_SUFFIX="$suffix" if [ "$LUA_DIR_SET" = "yes" ] then - if [ -e "$LUA_DIR/bin/lua$suffix" ] + if [ -f "$LUA_DIR/bin/lua$suffix" ] then find_lua="$LUA_DIR" fi @@ -265,7 +265,7 @@ then done fi -if ! [ "$LUA_DIR_SET" = "yes" ] +if [ "$LUA_DIR_SET" != "yes" ] then echo -n "Looking for Lua... " if [ ! "$find_lua" ] @@ -284,12 +284,12 @@ then fi fi -if ! [ "$LUA_INCDIR_SET" = "yes" ] +if [ "$LUA_INCDIR_SET" != "yes" ] then LUA_INCDIR="$LUA_DIR/include" fi -if ! [ "$LUA_LIBDIR_SET" = "yes" ] +if [ "$LUA_LIBDIR_SET" != "yes" ] then LUA_LIBDIR="$LUA_DIR/lib" fi @@ -311,7 +311,7 @@ fi echo -n "Checking Lua includes... " lua_h="$LUA_INCDIR/lua.h" -if [ -e "$lua_h" ] +if [ -f "$lua_h" ] then echo "lua.h found in $lua_h" else |