| Message ID | 20260317-fix-invalid-appends-v2-7-5c65ae5787d9@gmail.com |
|---|---|
| State | New |
| Headers | show |
| Series | Confusing and invalid conditional appends | expand |
diff --git a/meta/recipes-extended/pigz/pigz_2.8.bb b/meta/recipes-extended/pigz/pigz_2.8.bb index fcf0c93e41..d4640eddce 100644 --- a/meta/recipes-extended/pigz/pigz_2.8.bb +++ b/meta/recipes-extended/pigz/pigz_2.8.bb @@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://pigz.c;md5=9ae6dee8ceba9610596ed0ada493d142;beginline SRC_URI = "http://zlib.net/${BPN}/fossils/${BP}.tar.gz" SRC_URI[sha256sum] = "eb872b4f0e1f0ebe59c9f7bd8c506c4204893ba6a8492de31df416f0d5170fd0" -PROVIDES:class-native += "gzip-native" +PROVIDES:append:class-native = " gzip-native" # Point this at the homepage in case /fossils/ isn't updated UPSTREAM_CHECK_URI = "http://zlib.net/${BPN}/"
In this case `PROVIDES:class-native +=` doesn't override the default provide of ${PN} only because that one is `:prepend`ed and thus cannot be overriden. To avoid any surprises in the future let's use `:append:class-native =` syntax here. Signed-off-by: Michal Sieron <michalwsieron@gmail.com> --- meta/recipes-extended/pigz/pigz_2.8.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)