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 1a1194a92b)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
Konrad Weihmann 2020-06-02 22:54:36 +02:00 committed by Armin Kuster
parent ee6dace2fe
commit 5fe3defa40

View File

@ -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,"