From 5fe3defa403421be1dfe5dfde01c3d68818ca566 Mon Sep 17 00:00:00 2001 From: Konrad Weihmann Date: Tue, 2 Jun 2020 22:54:36 +0200 Subject: zile: properly append PACKAGECONFIG As ??= assignment will be overwritten by += in any case, one can't define a default of PACKAGECONFIG in this recipe. Using _append instead mitigates chances of accidental overwriting the default Signed-off-by: Konrad Weihmann Signed-off-by: Khem Raj (cherry picked from commit 1a1194a92bca9276676679588a4cda9ff31713ee) Signed-off-by: Armin Kuster --- meta-oe/recipes-support/zile/zile_2.4.14.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-support/zile/zile_2.4.14.bb b/meta-oe/recipes-support/zile/zile_2.4.14.bb index 3b846c1511..acd491498e 100644 --- a/meta-oe/recipes-support/zile/zile_2.4.14.bb +++ b/meta-oe/recipes-support/zile/zile_2.4.14.bb @@ -20,6 +20,6 @@ do_install_append() { } PACKAGECONFIG ??= "" -PACKAGECONFIG += "${@bb.utils.filter('DISTRO_FEATURES', 'acl', d)}" +PACKAGECONFIG_append = " ${@bb.utils.filter('DISTRO_FEATURES', 'acl', d)}" PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," -- cgit 1.2.3-korg