aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonrad Weihmann <kweihmann@outlook.com>2020-06-02 22:54:36 +0200
committerKhem Raj <raj.khem@gmail.com>2020-06-03 15:15:43 -0700
commit1a1194a92bca9276676679588a4cda9ff31713ee (patch)
treed5c0434da87fb67a99b37a34b8892de6e94b1db7
parent4cca3eff387dc6630915ba4238b97712589308b8 (diff)
downloadmeta-openembedded-1a1194a92bca9276676679588a4cda9ff31713ee.tar.gz
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 <kweihmann@outlook.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/zile/zile_2.4.14.bb2
1 files changed, 1 insertions, 1 deletions
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,"