aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support
diff options
context:
space:
mode:
authorKonrad Weihmann <kweihmann@outlook.com>2020-06-02 22:54:36 +0200
committerArmin Kuster <akuster808@gmail.com>2020-07-01 08:00:22 -0700
commit5fe3defa403421be1dfe5dfde01c3d68818ca566 (patch)
treef3d879bc0789018f8d78c7338ce932f2bde51094 /meta-oe/recipes-support
parentee6dace2fe487b68232ad310bd3ae9f880930ea2 (diff)
downloadmeta-openembedded-contrib-5fe3defa403421be1dfe5dfde01c3d68818ca566.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> (cherry picked from commit 1a1194a92bca9276676679588a4cda9ff31713ee) Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support')
-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,"