summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuciano Dittgen <luciano.dittgen@ossystems.com.br>2026-09-08 13:49:15 -0300
committerLuciano Dittgen <luciano.dittgen@ossystems.com.br>2026-09-09 17:48:58 -0300
commit4fa9dbf1984f71adc6f5e8991b516eb0aaa8ce99 (patch)
tree9744d04e8cd112817efd45417edf49d12bbb9a14
parent7aa40fe036b83ee457d1a0cfab7f0b3af714b24c (diff)
downloadmeta-freescale-4fa9dbf1984f71adc6f5e8991b516eb0aaa8ce99.tar.gz
imx-gpu-viv: Separate the -dev names it provides and replaces
The Debian-rename loop appended the -dev name without a separator, so RPROVIDES:libgles1-imx-dev — the only one of these with a prior value — resolved to the single token "libgles-imx-devlibgles1-dev" and the package provided neither name. Tested with bitbake imx-gpu-viv on imx8mp-lpddr4-evk; the buildhistory delta is that RPROVIDES alone. Signed-off-by: Luciano Dittgen <luciano.dittgen@ossystems.com.br>
-rw-r--r--recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc b/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc
index e7d0188db..5827a9db3 100644
--- a/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc
+++ b/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc
@@ -157,7 +157,7 @@ python __anonymous() {
157 157
158 # For -dev, the first element is both the Debian and original name 158 # For -dev, the first element is both the Debian and original name
159 fullp += "-dev" 159 fullp += "-dev"
160 pkgs = p[0] + "-dev" 160 pkgs = " " + p[0] + "-dev"
161 d.setVar("DEBIAN_NOAUTONAME:" + fullp, "1") 161 d.setVar("DEBIAN_NOAUTONAME:" + fullp, "1")
162 d.appendVar("RREPLACES:" + fullp, pkgs) 162 d.appendVar("RREPLACES:" + fullp, pkgs)
163 d.appendVar("RPROVIDES:" + fullp, pkgs) 163 d.appendVar("RPROVIDES:" + fullp, pkgs)