aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2014-01-10 16:16:48 -0800
committerHisham Muhammad <hisham@gobolinux.org>2014-01-10 16:16:48 -0800
commit17f1c5d3600fa24c670d78bc9e9931502309bf36 (patch)
treef463d2e9b542531dab649d98b2f70a3b56166260
parent488dcab7879933ba029c656834939868b02cf743 (diff)
parent2e3b220949cf0fc190c4026136e99c95bdeb5aaa (diff)
downloadluarocks-17f1c5d3600fa24c670d78bc9e9931502309bf36.tar.gz
luarocks-17f1c5d3600fa24c670d78bc9e9931502309bf36.tar.bz2
luarocks-17f1c5d3600fa24c670d78bc9e9931502309bf36.zip
Merge pull request #216 from siffiejoe/master
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`