diff options
author | Romain Naour <romain.naour@openwide.fr> | 2015-07-24 15:24:32 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-07-26 15:21:31 +0200 |
commit | e9dcccd18eca93e1384ac55f6c254625dcf814b5 (patch) | |
tree | b58ca4de1f2aee0b64988f4c47fcdb2cf4706cb0 | |
parent | 6ba49e2b913f1aa399088592a237dd45e495cb39 (diff) | |
download | buildroot-e9dcccd18eca93e1384ac55f6c254625dcf814b5.tar.gz buildroot-e9dcccd18eca93e1384ac55f6c254625dcf814b5.zip |
package/kyua: add atf reverse dependency
atf package depends on BR2_USE_MMU, therefore kyua must
also depend on it.
Fixes:
http://autobuild.buildroot.net/results/929/9290a39d9b77e5a57e59912ce3d901149e9d6c11/
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/kyua/Config.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/kyua/Config.in b/package/kyua/Config.in index e1bcd487b1..4f887b0e0a 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_USE_MMU # atf select BR2_PACKAGE_ATF select BR2_PACKAGE_LUTOK select BR2_PACKAGE_SQLITE @@ -18,3 +19,4 @@ config BR2_PACKAGE_KYUA comment "kyua needs a toolchain w/ C++ and full Lua" depends on !BR2_INSTALL_LIBSTDCPP || BR2_PACKAGE_LUAJIT depends on BR2_PACKAGE_HAS_LUAINTERPRETER + depends on BR2_USE_MMU |