summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/libcomps
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2023-05-19 15:38:46 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-05-25 10:29:08 +0100
commit973c37ce44efdfec4f02ce31925a2fffb956c3be (patch)
tree24490f3d648f9c2d31661f62bfd45db8c8b3153a /meta/recipes-devtools/libcomps
parent7ba5011adfbbe7e0ef201912213547b97979c4fe (diff)
downloadpoky-973c37ce44efdfec4f02ce31925a2fffb956c3be.tar.gz
libcomps: clean up DEPENDS
This recipe depends on zlib so add that explicitly. Disable the tests and remove the dependency on libcheck, as we don't install them. Remove obsolete PYTHON_DESIRED assignment that isn't used anywhere. Explicitly disable the documentation for now. (From OE-Core rev: 035996470bebf909146681bbaf276831bb7be17d) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/libcomps')
-rw-r--r--meta/recipes-devtools/libcomps/libcomps_0.1.19.bb8
1 files changed, 5 insertions, 3 deletions
diff --git a/meta/recipes-devtools/libcomps/libcomps_0.1.19.bb b/meta/recipes-devtools/libcomps/libcomps_0.1.19.bb
index f8063d9400..e362e8e108 100644
--- a/meta/recipes-devtools/libcomps/libcomps_0.1.19.bb
+++ b/meta/recipes-devtools/libcomps/libcomps_0.1.19.bb
@@ -15,10 +15,12 @@ S = "${WORKDIR}/git"
15 15
16inherit cmake setuptools3-base 16inherit cmake setuptools3-base
17 17
18DEPENDS += "libxml2 expat libcheck" 18DEPENDS = "expat libxml2 zlib"
19
20EXTRA_OECMAKE = "-DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} \
21 -DENABLE_DOCS=OFF \
22 -DENABLE_TESTS=OFF"
19 23
20EXTRA_OECMAKE = " -DPYTHON_INSTALL_DIR=${PYTHON_SITEPACKAGES_DIR} -DPYTHON_DESIRED=3"
21OECMAKE_SOURCEPATH = "${S}/libcomps" 24OECMAKE_SOURCEPATH = "${S}/libcomps"
22 25
23BBCLASSEXTEND = "native nativesdk" 26BBCLASSEXTEND = "native nativesdk"
24