diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2014-01-10 16:16:48 -0800 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2014-01-10 16:16:48 -0800 |
commit | 17f1c5d3600fa24c670d78bc9e9931502309bf36 (patch) | |
tree | f463d2e9b542531dab649d98b2f70a3b56166260 | |
parent | 488dcab7879933ba029c656834939868b02cf743 (diff) | |
parent | 2e3b220949cf0fc190c4026136e99c95bdeb5aaa (diff) | |
download | luarocks-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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -286,7 +286,7 @@ fi | |||
286 | 286 | ||
287 | if [ "$LUA_DIR_SET" != "yes" ] | 287 | if [ "$LUA_DIR_SET" != "yes" ] |
288 | then | 288 | then |
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` |