summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2019-10-04 01:22:10 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-10-07 23:12:31 +0100
commitd253b061fbe45ae965af71008e9a6c6fe5037cd3 (patch)
tree79a581df9aecc04c7000700e331f965f1052d841
parent4b2a7b3c9c0ac2e7b3b436c8dfc5f2d3c7ddda55 (diff)
downloadopenembedded-core-contrib-d253b061fbe45ae965af71008e9a6c6fe5037cd3.tar.gz
meson: fix RDEPENDS
Meson needs python3-pkg-resources to work to add to RDEPENDS. Remove python3-core as this is automatically pulled in by python3-modules. Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-devtools/meson/meson.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/meson/meson.inc b/meta/recipes-devtools/meson/meson.inc
index 2958a2a8de..d365bcd8a3 100644
--- a/meta/recipes-devtools/meson/meson.inc
+++ b/meta/recipes-devtools/meson/meson.inc
@@ -32,6 +32,6 @@ UPSTREAM_CHECK_URI = "https://github.com/mesonbuild/meson/releases"
inherit setuptools3
-RDEPENDS_${PN} = "ninja python3-core python3-modules"
+RDEPENDS_${PN} = "ninja python3-modules python3-pkg-resources"
FILES_${PN} += "${datadir}/polkit-1"