From ee6dace2fe487b68232ad310bd3ae9f880930ea2 Mon Sep 17 00:00:00 2001 From: Konrad Weihmann Date: Tue, 2 Jun 2020 22:53:46 +0200 Subject: netkit-rsh: 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 4cca3eff387dc6630915ba4238b97712589308b8) Signed-off-by: Armin Kuster --- meta-networking/recipes-netkit/netkit-rsh/netkit-rsh_0.17.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-networking') diff --git a/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh_0.17.bb b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh_0.17.bb index a6716d06ce..f6c05daa18 100644 --- a/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh_0.17.bb +++ b/meta-networking/recipes-netkit/netkit-rsh/netkit-rsh_0.17.bb @@ -37,7 +37,7 @@ CFLAGS += " -D_GNU_SOURCE -Wno-deprecated-declarations" LDFLAGS += " -L${STAGING_LIBDIR} -lutil -lcrypt" PACKAGECONFIG ??= "" -PACKAGECONFIG += "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}" +PACKAGECONFIG_append = " ${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}" PACKAGECONFIG[pam] = " , --without-pam, libpam, libpam" COMPATIBLE_HOST_libc-musl = 'null' -- cgit v1.2.3-54-g00ecf