diff options
author | Konrad Weihmann <kweihmann@outlook.com> | 2020-06-02 22:54:36 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-06-03 15:15:43 -0700 |
commit | 1a1194a92bca9276676679588a4cda9ff31713ee (patch) | |
tree | d5c0434da87fb67a99b37a34b8892de6e94b1db7 /meta-oe/recipes-support/zile | |
parent | 4cca3eff387dc6630915ba4238b97712589308b8 (diff) | |
download | meta-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>
Diffstat (limited to 'meta-oe/recipes-support/zile')
-rw-r--r-- | meta-oe/recipes-support/zile/zile_2.4.14.bb | 2 |
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 3b846c151..acd491498 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() { | |||
20 | } | 20 | } |
21 | 21 | ||
22 | PACKAGECONFIG ??= "" | 22 | PACKAGECONFIG ??= "" |
23 | PACKAGECONFIG += "${@bb.utils.filter('DISTRO_FEATURES', 'acl', d)}" | 23 | PACKAGECONFIG_append = " ${@bb.utils.filter('DISTRO_FEATURES', 'acl', d)}" |
24 | 24 | ||
25 | PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," | 25 | PACKAGECONFIG[acl] = "--enable-acl,--disable-acl,acl," |