diff options
author | Philipp Janda <siffiejoe@gmx.net> | 2014-01-08 20:38:08 +0100 |
---|---|---|
committer | Philipp Janda <siffiejoe@gmx.net> | 2014-01-08 20:38:08 +0100 |
commit | 2e3b220949cf0fc190c4026136e99c95bdeb5aaa (patch) | |
tree | 5541737d1ff211348e9142a13c5bd09092e4333a | |
parent | 2511c8377f6c924625b10d6e6cc77c5053890b94 (diff) | |
download | luarocks-2e3b220949cf0fc190c4026136e99c95bdeb5aaa.tar.gz luarocks-2e3b220949cf0fc190c4026136e99c95bdeb5aaa.tar.bz2 luarocks-2e3b220949cf0fc190c4026136e99c95bdeb5aaa.zip |
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` |