summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2019-10-17 12:29:44 +0100
committerArmin Kuster <akuster808@gmail.com>2019-10-25 23:44:34 -0700
commit5fae2306184023165e21a87d1cca3016ba105d5f (patch)
tree141b7116fa00d9996ab6b17d186c1335bad64196 /meta
parent60ee826ec6f07b270ae77e24be0088269a93081e (diff)
downloadopenembedded-core-contrib-5fae2306184023165e21a87d1cca3016ba105d5f.tar.gz
python3: -dev should depend on distutils
python3-config uses distutils: Traceback (most recent call last): File "/usr/bin/python3-config", line 9, in <module> from distutils import sysconfig ModuleNotFoundError: No module named 'distutils' Add the dependency so that distutils is always present. [ YOCTO #13592 ] Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 04136dbac48986dce5b2b872b2c0b46c673c44f2) Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-devtools/python/python3/python3-manifest.json3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta/recipes-devtools/python/python3/python3-manifest.json
index 1ad85a9ff3..1eddda91b4 100644
--- a/meta/recipes-devtools/python/python3/python3-manifest.json
+++ b/meta/recipes-devtools/python/python3/python3-manifest.json
@@ -498,7 +498,8 @@
"${libdir}/pkgconfig"
],
"rdepends": [
- "core"
+ "core",
+ "distutils"
],
"summary": "Python development package"
},