diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2023-08-28 00:05:02 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-08-28 08:55:26 -0700 |
commit | f74d5dfd69a29bb364648d424d7575d46f033478 (patch) | |
tree | 6d80f17a0545b3aa23eff2f380438aa01939904d /meta-networking | |
parent | 77efa60d5bce7029ff7b5c66bc20e8aa55220b43 (diff) | |
download | meta-openembedded-f74d5dfd69a29bb364648d424d7575d46f033478.tar.gz |
spice-protocol: fix populate_sdk error when spice is installed
spice depends on spice-protocol, when IMAGE_INSTALL contains spice,
do_populate_sdk fails with the following error:
Error:
Problem: package libspice-server-dev-0.14.2+git0+7cbd70b931_4fc4c2db36-r0.core2_64 requires spice-protocol-dev, but none of the providers can be installed
- conflicting requests
- nothing provides spice-protocol = 0.14.4-r0 needed by spice-protocol-dev-0.14.4-r0.core2_64
(try to add '--skip-broken' to skip uninstallable packages)
For spice-protocol, it's a development package and all things are in
the dev package, so set ALLOW_EMPTY to fix the above error.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking')
-rw-r--r-- | meta-networking/recipes-support/spice/spice-protocol_0.14.4.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/spice/spice-protocol_0.14.4.bb b/meta-networking/recipes-support/spice/spice-protocol_0.14.4.bb index 9ce019ed8..3c8458baa 100644 --- a/meta-networking/recipes-support/spice/spice-protocol_0.14.4.bb +++ b/meta-networking/recipes-support/spice/spice-protocol_0.14.4.bb | |||
@@ -16,4 +16,6 @@ S = "${WORKDIR}/git" | |||
16 | 16 | ||
17 | inherit meson pkgconfig | 17 | inherit meson pkgconfig |
18 | 18 | ||
19 | ALLOW_EMPTY:${PN} = "1" | ||
20 | |||
19 | BBCLASSEXTEND = "native nativesdk" | 21 | BBCLASSEXTEND = "native nativesdk" |