From 8c8349b317992caa9e961d2a843ffa13f4dfe1d1 Mon Sep 17 00:00:00 2001 From: Lukas Bulwahn Date: Fri, 2 Dec 2016 20:26:32 +0100 Subject: [PATCH] diagnostic-aggregator: improve build dependency bitbake diagnostic-aggregrator failed due to missing build dependencies with: ``` | -- Could not find the required component 'bondcpp'. The following CMake error indicates that you either need to install the package with the same name or change your environment so that it can be found. | CMake Error at /home/lukas/dev/openembedded.org/openembedded-core/build/tmp-glibc/sysroots/qemux86/opt/ros/indigo/share/catkin/cmake/catkinConfig.cmake:83 (find_package): | Could not find a package configuration file provided by "bondcpp" with any | of the following names: | | bondcppConfig.cmake | bondcpp-config.cmake | | Add the installation prefix of "bondcpp" to CMAKE_PREFIX_PATH or set | "bondcpp_DIR" to a directory containing one of the above files. If | "bondcpp" provides a separate development package or SDK, be sure it has | been installed. | Call Stack (most recent call first): | CMakeLists.txt:6 (find_package) | | | -- Configuring incomplete, errors occurred! ``` Signed-off-by: Lukas Bulwahn --- recipes-ros/diagnostics/diagnostic-aggregator_1.8.10.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-ros/diagnostics/diagnostic-aggregator_1.8.10.bb b/recipes-ros/diagnostics/diagnostic-aggregator_1.8.10.bb index dd08276..77a0c33 100644 --- a/recipes-ros/diagnostics/diagnostic-aggregator_1.8.10.bb +++ b/recipes-ros/diagnostics/diagnostic-aggregator_1.8.10.bb @@ -3,6 +3,6 @@ SECTION = "devel" LICENSE = "BSD" LIC_FILES_CHKSUM = "file://package.xml;beginline=10;endline=10;md5=d566ef916e9dedc494f5f793a6690ba5" -DEPENDS = "diagnostic-msgs pluginlib roscpp rospy rostest xmlrpcpp" +DEPENDS = "bondcpp bondpy diagnostic-msgs pluginlib roscpp rospy rostest xmlrpcpp" require diagnostics.inc