summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFederico Pellegrin <fede@evolware.org>2022-10-06 16:13:47 +0200
committerKhem Raj <raj.khem@gmail.com>2022-10-06 07:20:50 -0700
commitaa20821f171471cd59c38a3d4b1c3cbb5d90b311 (patch)
tree1fbec3ebf7935d004a0d114700fc40ce1bfc4ad1
parent22682fdfb747e72ec1400a9df2ae0324dbca6d16 (diff)
downloadmeta-openembedded-aa20821f171471cd59c38a3d4b1c3cbb5d90b311.tar.gz
chrony: correct parameter to configure to disable readline usage
The correct parameter to disable readline usage is --disable-readline and not --without-readline. See also chrony source at: https://github.com/mlichvar/chrony/blob/master/configure#L110 Signed-off-by: Federico Pellegrin <fede@evolware.org> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-networking/recipes-support/chrony/chrony_4.3.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-support/chrony/chrony_4.3.bb b/meta-networking/recipes-support/chrony/chrony_4.3.bb
index 6617164e3..d0e2c4b54 100644
--- a/meta-networking/recipes-support/chrony/chrony_4.3.bb
+++ b/meta-networking/recipes-support/chrony/chrony_4.3.bb
@@ -70,7 +70,7 @@ USERADD_PARAM:${PN} += "${@bb.utils.contains('PACKAGECONFIG', 'privdrop', '--sys
70PACKAGECONFIG ??= "editline \ 70PACKAGECONFIG ??= "editline \
71 ${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)} \ 71 ${@bb.utils.filter('DISTRO_FEATURES', 'ipv6', d)} \
72" 72"
73PACKAGECONFIG[readline] = "--without-editline,--without-readline,readline" 73PACKAGECONFIG[readline] = "--without-editline,--disable-readline,readline"
74PACKAGECONFIG[editline] = ",--without-editline,libedit" 74PACKAGECONFIG[editline] = ",--without-editline,libedit"
75PACKAGECONFIG[sechash] = "--without-tomcrypt,--disable-sechash,nss" 75PACKAGECONFIG[sechash] = "--without-tomcrypt,--disable-sechash,nss"
76PACKAGECONFIG[privdrop] = "--with-libcap,--disable-privdrop --without-libcap,libcap" 76PACKAGECONFIG[privdrop] = "--with-libcap,--disable-privdrop --without-libcap,libcap"