From 6d825ec4ae40c577605f8ff384b2902f04a03753 Mon Sep 17 00:00:00 2001 From: Tom Meinlschmidt Date: Sun, 21 Feb 2016 21:17:45 +0100 Subject: [PATCH] toolchain not found even it is existing - OSX --- build_elua.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_elua.lua b/build_elua.lua index 4fdfcbc9..ae5888fc 100755 --- a/build_elua.lua +++ b/build_elua.lua @@ -233,7 +233,7 @@ else local c = usable_chains[ i ] local t = bd.get_toolchain_data( c ) local res = utils.check_command( t.compile .. " " .. t.version ) - if res == 0 then chain = c break end + if res == 0 or res == true then chain = c break end end if chain then comp.toolchain = chain