qtinterfaceframework: update workaround for kirkstone

Skip qtinterfaceframework also with kirkstone now that master
branch is using kirkstone as DISTRO_CODENAME.

Pick-to: 6.3 6.2
Change-Id: I8ff7c9c3289d4f2c8864c14a6abcf61fe34250a6
Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
This commit is contained in:
Samuli Piippo 2022-03-16 07:28:41 +00:00
parent eaee55e9fe
commit b32b7f2774

View File

@ -46,7 +46,7 @@ RDEPENDS:${PN}:remove:mingw32 = " \
python () {
# qtinterfaceframework has dependencies that fail to build for nativesdk with meta-openembedded/master
if d.getVar('DISTRO_CODENAME', True) == 'master':
if d.getVar('DISTRO_CODENAME', True) in ['master', 'kirkstone']:
PN = d.getVar('PN', True)
d.setVar('RDEPENDS:' + PN, d.getVar('RDEPENDS:' + PN).replace('nativesdk-qtinterfaceframework-dev', '').replace('nativesdk-qtinterfaceframework-tools', ''))
}