From: Ross Burton Date: Thu, 17 Oct 2019 11:29:44 +0000 (+0100) Subject: python3: -dev should depend on distutils X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~12995 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=04136dbac48986dce5b2b872b2c0b46c673c44f2;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git python3: -dev should depend on distutils python3-config uses distutils: Traceback (most recent call last): File "/usr/bin/python3-config", line 9, in 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 Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/python/python3/python3-manifest.json b/meta/recipes-devtools/python/python3/python3-manifest.json index 1ad85a9ff38..1eddda91b4a 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" },