]> code.ossystems Code Review - openembedded-core.git/commit
python3: ensure that all forms of python3-config are in python3-dev
authorRoss Burton <ross.burton@intel.com>
Thu, 17 Oct 2019 11:29:43 +0000 (12:29 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 22 Oct 2019 07:45:41 +0000 (08:45 +0100)
commit93aa8121b3580a325566e008d7c7aa2f7d29435d
tree541b65d274f4246ee8b904979dc35d886a98e8e2
parent8de3240af8d368bc2398b5c47dd14bfce4f1aa4d
python3: ensure that all forms of python3-config are in python3-dev

In multilib builds python3-config gets renamed to eg python3-config-lib64 but
this ends up being packaged in python3-core not python3-dev.

The manifest uses an extended glob to package all python* binaries that are not
python-config into python3-core:

            "${bindir}/python*[!-config]",

However, this doesn't do what was intended, as [] is a range match.

Replace the globs with more verbose but precise matches, and clear out
FILES_${PN} to ensure that new binaries don't end up in ${PN} (which shouldn't
exist).

[ YOCTO #13592 ]

Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-devtools/python/python3/python3-manifest.json
meta/recipes-devtools/python/python3_3.7.4.bb