diff mbox

lua-ev: disable on avr32 and blackfin

Message ID 1385713114-3847-1-git-send-email-spdawson@gmail.com
State Accepted
Commit 765ccaf08c5b042bd33d800772564cc10808f3af
Headers show

Commit Message

Simon Dawson Nov. 29, 2013, 8:18 a.m. UTC
From: Simon Dawson <spdawson@gmail.com>

lua-ev is a reverse dependency of libev, but the architecture filtering is
not propagated. Fixes autobuild failure such as the following.

  http://autobuild.buildroot.net/results/387/38704a4362ab6c3458c45603975b274937059fa9/

Signed-off-by: Simon Dawson <spdawson@gmail.com>
---
 package/lua-ev/Config.in | 1 +
 1 file changed, 1 insertion(+)

Comments

Peter Korsgaard Nov. 29, 2013, 9:01 a.m. UTC | #1
>>>>> "spdawson" == spdawson  <spdawson@gmail.com> writes:

 > From: Simon Dawson <spdawson@gmail.com>
 > lua-ev is a reverse dependency of libev, but the architecture filtering is
 > not propagated. Fixes autobuild failure such as the following.

 >   http://autobuild.buildroot.net/results/387/38704a4362ab6c3458c45603975b274937059fa9/

 > Signed-off-by: Simon Dawson <spdawson@gmail.com>

Committed, thanks.
diff mbox

Patch

diff --git a/package/lua-ev/Config.in b/package/lua-ev/Config.in
index 1e89c27..4f704ad 100644
--- a/package/lua-ev/Config.in
+++ b/package/lua-ev/Config.in
@@ -1,6 +1,7 @@ 
 config BR2_PACKAGE_LUA_EV
 	bool "lua-ev"
 	select BR2_PACKAGE_LIBEV
+	depends on !(BR2_avr32 || BR2_bfin) # libev
 	help
 	  Get access to the libev library from Lua.