mirror of
http://code.qt.io/yocto/meta-qt6.git
synced 2026-01-04 16:10:12 +00:00
sdk: workaround failing nativesdk-python3-qface build
meta-openembedded/master has issues building certain python3
modules for nativesdk. For python3-qface, failure is from dependency
chain: nativesdk-python3-qface
-> nativesdk-python3-watchdog
-> nativesdk-python3-requests
-> nativesdk-python3-pyopenssl
-> nativesdk-python3-cryptography
Don't include qtinterfaceframework to sdk when using master branch
with poky until all modules can be built correctly.
Change-Id: Id2837f1363a22cb28e45c1165631cfa3f37756a7
Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
(cherry picked from commit b2ccd0bd60)
Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
This commit is contained in:
parent
5da8552ecc
commit
2d5228e95b
|
|
@ -43,3 +43,10 @@ RDEPENDS:${PN}:remove:mingw32 = " \
|
|||
nativesdk-perl-modules \
|
||||
${@bb.utils.contains('BBFILE_COLLECTIONS', 'meta-python', 'nativesdk-qtinterfaceframework-dev nativesdk-qtinterfaceframework-tools', '', d)} \
|
||||
"
|
||||
|
||||
python () {
|
||||
# qtinterfaceframework has dependencies that fail to build for nativesdk with meta-openembedded/master
|
||||
if d.getVar('DISTRO_CODENAME', True) == 'master':
|
||||
PN = d.getVar('PN', True)
|
||||
d.setVar('RDEPENDS:' + PN, d.getVar('RDEPENDS:' + PN).replace('nativesdk-qtinterfaceframework-dev', '').replace('nativesdk-qtinterfaceframework-tools', ''))
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user