diff options
author | Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> | 2025-06-20 22:14:50 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-06-24 13:51:31 +0100 |
commit | 160c0711ffce7da74fe32ef5e8eb543a114359fa (patch) | |
tree | 7faae5c93516d763f9cd56d8274348487721823e | |
parent | 60e8db85886468d4455c0961d5985b65658d6b68 (diff) | |
download | poky-160c0711ffce7da74fe32ef5e8eb543a114359fa.tar.gz |
mesa: fix RPROVIDEd package names
The BCP for virtual runtime package names is virtual-foo. Make mesa
follow the established convention and change the names of the provied
packages to virtual-foo-icd.
Fixes: 9d3b4c9bc403 ("mesa: sort out PROVIDES for the glvnd case")
(From OE-Core rev: d69e06dbd8575e258a4542f34c5eaba413da7750)
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-graphics/mesa/mesa.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc index c3adb5ef78..b3b369d0ee 100644 --- a/meta/recipes-graphics/mesa/mesa.inc +++ b/meta/recipes-graphics/mesa/mesa.inc | |||
@@ -286,7 +286,7 @@ python __anonymous() { | |||
286 | if 'glvnd' in pkgconfig: | 286 | if 'glvnd' in pkgconfig: |
287 | for p in ("libegl", "libglx"): | 287 | for p in ("libegl", "libglx"): |
288 | fullp = mlprefix + p + "-mesa" + suffix | 288 | fullp = mlprefix + p + "-mesa" + suffix |
289 | d.appendVar("RPROVIDES:" + fullp, '%s-icd' % p) | 289 | d.appendVar("RPROVIDES:" + fullp, ' virtual-%s-icd' % p) |
290 | else: | 290 | else: |
291 | for p in (("egl", "libegl", "libegl1"), | 291 | for p in (("egl", "libegl", "libegl1"), |
292 | ("opengl", "libgl", "libgl1"), | 292 | ("opengl", "libgl", "libgl1"), |