summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonrad Weihmann <kweihmann@outlook.com>2020-06-02 22:53:46 +0200
committerKhem Raj <raj.khem@gmail.com>2020-06-03 15:15:43 -0700
commit4cca3eff387dc6630915ba4238b97712589308b8 (patch)
tree2fe16a7937863cb73756fab7ecccd477106d3ff4
parentd8da3806aa67bbe345649cbda076ff7376c821b8 (diff)
downloadmeta-openembedded-4cca3eff387dc6630915ba4238b97712589308b8.tar.gz
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 <kweihmann@outlook.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-networking/recipes-netkit/netkit-rsh/netkit-rsh_0.17.bb2
1 files changed, 1 insertions, 1 deletions
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 a6716d06c..f6c05daa1 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"
37LDFLAGS += " -L${STAGING_LIBDIR} -lutil -lcrypt" 37LDFLAGS += " -L${STAGING_LIBDIR} -lutil -lcrypt"
38 38
39PACKAGECONFIG ??= "" 39PACKAGECONFIG ??= ""
40PACKAGECONFIG += "${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}" 40PACKAGECONFIG_append = " ${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)}"
41PACKAGECONFIG[pam] = " , --without-pam, libpam, libpam" 41PACKAGECONFIG[pam] = " , --without-pam, libpam, libpam"
42 42
43COMPATIBLE_HOST_libc-musl = 'null' 43COMPATIBLE_HOST_libc-musl = 'null'