diff options
author | 2015-05-06 23:42:44 +0200 | |
---|---|---|
committer | 2015-05-06 23:48:51 +0200 | |
commit | 1f751579945792d6127ffa239fd803d996709e18 (patch) | |
tree | 46094a06f2ff5c40faa02f7e465e6ff38faec232 /package/ola | |
parent | 842f6a3b7f9c266ffda055d928c0bbe3c5906491 (diff) | |
download | buildroot-1f751579945792d6127ffa239fd803d996709e18.tar.gz buildroot-1f751579945792d6127ffa239fd803d996709e18.tar.bz2 |
ola: depend on python for bindings instead of selecting it
Most likely people have already enabled python if they want to use the
bindings for ola, so use depends on instead of select so we don't need to
propagate the dependencies here.
Python already depends on mmu, so drop that here.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/ola')
-rw-r--r-- | package/ola/Config.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/package/ola/Config.in b/package/ola/Config.in index 1c4b8d82fb..f587db5ad0 100644 --- a/package/ola/Config.in +++ b/package/ola/Config.in @@ -32,9 +32,8 @@ config BR2_PACKAGE_OLA_WEB config BR2_PACKAGE_OLA_PYTHON_BINDINGS bool "python bindings" - select BR2_PACKAGE_PYTHON + depends on BR2_PACKAGE_PYTHON select BR2_PACKAGE_PYTHON_PROTOBUF - depends on BR2_USE_MMU help Build OLA with support for the Python language. @@ -55,8 +54,7 @@ config BR2_PACKAGE_OLA_EXAMPLES config BR2_PACKAGE_OLA_RDM_TESTS bool "rdm tests" - select BR2_PACKAGE_OLA_PYTHON_BINDINGS - depends on BR2_USE_MMU + depends on BR2_PACKAGE_OLA_PYTHON_BINDINGS help Build OLA RDM tests. |