[Buildroot] [PATCH] package/kyua: fix unmet dependencies

Yann E. MORIN yann.morin.1998 at free.fr
Fri May 5 19:08:26 UTC 2017


lutok is a lua module, so it depends on ! static libs. However, the
dependency is implicit, being done because the lua modules are sourced
globally under an if-block, and thus it is not easy to find that
dependency.

Propagate that dependency to kyua, which was missing it (because it is
not a lua module, so was missing the dependency).

Signed-off-by: "Yann E. MORIN" <yann.morin.1998 at free.fr>
Cc: Sebastien Bourdelin <sebastien.bourdelin at savoirfairelinux.com>
---
 package/kyua/Config.in | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/kyua/Config.in b/package/kyua/Config.in
index 4f887b0e0a..6444b8c9e0 100644
--- a/package/kyua/Config.in
+++ b/package/kyua/Config.in
@@ -3,6 +3,7 @@ config BR2_PACKAGE_KYUA
 	depends on BR2_INSTALL_LIBSTDCPP
 	depends on BR2_PACKAGE_HAS_LUAINTERPRETER # lutok
 	depends on !BR2_PACKAGE_LUAJIT # lutok
+	depends on !BR2_STATIC_LIBS # lutok
 	depends on BR2_USE_MMU # atf
 	select BR2_PACKAGE_ATF
 	select BR2_PACKAGE_LUTOK
-- 
2.11.0



More information about the buildroot mailing list