aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Janda <siffiejoe@gmx.net>2014-01-08 20:38:08 +0100
committerPhilipp Janda <siffiejoe@gmx.net>2014-01-08 20:38:08 +0100
commit2e3b220949cf0fc190c4026136e99c95bdeb5aaa (patch)
tree5541737d1ff211348e9142a13c5bd09092e4333a
parent2511c8377f6c924625b10d6e6cc77c5053890b94 (diff)
downloadluarocks-2e3b220949cf0fc190c4026136e99c95bdeb5aaa.tar.gz
luarocks-2e3b220949cf0fc190c4026136e99c95bdeb5aaa.tar.bz2
luarocks-2e3b220949cf0fc190c4026136e99c95bdeb5aaa.zip
fixed test for empty variable in configure script
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index ce5e78f8..166d6898 100755
--- a/configure
+++ b/configure
@@ -286,7 +286,7 @@ fi
286 286
287if [ "$LUA_DIR_SET" != "yes" ] 287if [ "$LUA_DIR_SET" != "yes" ]
288then 288then
289 if [ -n "$find_lua" ] 289 if [ -z "$find_lua" ]
290 then 290 then
291 echo_n "Looking for Lua... " 291 echo_n "Looking for Lua... "
292 find_lua=`find_program lua$LUA_SUFFIX` 292 find_lua=`find_program lua$LUA_SUFFIX`