diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2016-06-19 11:22:49 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-06-20 22:47:12 +0200 |
commit | 052b46c6dcd689e8dc2e7dbe6e334a62c53e1bd1 (patch) | |
tree | c9850bc5c5341676c8a24863feed9dc1e9232d3f | |
parent | 98e25b5783c367638b4fc081e08013b6e1befb64 (diff) | |
download | buildroot-052b46c6dcd689e8dc2e7dbe6e334a62c53e1bd1.tar.gz buildroot-052b46c6dcd689e8dc2e7dbe6e334a62c53e1bd1.zip |
package/boost: boost-metaparse depends on boost-test
The boost metaparse library depends on the test library:
https://github.com/boostorg/metaparse/blob/master/build/Jamfile.v2
The test library itself depends on MMU, therefore we need to propagate
the dependency, fixes
http://autobuild.buildroot.net/results/02f/02f98a50340ecae01f723ad48c2d54d9e28388f8/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/boost/Config.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/boost/Config.in b/package/boost/Config.in index fae4b5fed7..0cc9a589a9 100644 --- a/package/boost/Config.in +++ b/package/boost/Config.in @@ -115,6 +115,8 @@ config BR2_PACKAGE_BOOST_MATH bool "boost-math" config BR2_PACKAGE_BOOST_METAPARSE + depends on BR2_USE_MMU # boost-test + select BR2_PACKAGE_BOOST_TEST bool "boost-metaparse" config BR2_PACKAGE_BOOST_MPI |