summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormike.looijmans@topic.nl <mike.looijmans@topic.nl>2015-12-22 09:48:03 +0100
committerJoe MacDonald <joe_macdonald@mentor.com>2016-02-29 16:23:35 -0500
commitb1883d2cdc54110ba97201acb63b731c699b2043 (patch)
tree018c317e539ac8ade2bb4e7345122a1f4e8811af
parente4dee444c07d01f99d85d9419bd31be08a35f805 (diff)
downloadmeta-openembedded-b1883d2cdc54110ba97201acb63b731c699b2043.tar.gz
samba: Fix typo in PACKAGECONFIG for "acl" and "aio"
There's a "-" too many in PACKAGECONFIG[acl] and PACKAGECONFIG[aio] resulting in errors like this if built without acl: waf: error: no such option: ---without-acl-support Remove the extra "-" to fix the issue. Signed-off-by: Mike Looijmans <mike.looijmans@topic.nl> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
-rw-r--r--meta-networking/recipes-connectivity/samba/samba_4.1.12.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-networking/recipes-connectivity/samba/samba_4.1.12.bb b/meta-networking/recipes-connectivity/samba/samba_4.1.12.bb
index 3bcc1b9dd..ff58dae1f 100644
--- a/meta-networking/recipes-connectivity/samba/samba_4.1.12.bb
+++ b/meta-networking/recipes-connectivity/samba/samba_4.1.12.bb
@@ -64,8 +64,8 @@ PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'pam', 'pam', '', d)} \
64 64
65RDEPENDS_${PN}-base += "${@bb.utils.contains('PACKAGECONFIG', 'lsb', 'lsb', '', d)}" 65RDEPENDS_${PN}-base += "${@bb.utils.contains('PACKAGECONFIG', 'lsb', 'lsb', '', d)}"
66 66
67PACKAGECONFIG[acl] = "--with-acl-support,---without-acl-support,acl" 67PACKAGECONFIG[acl] = "--with-acl-support,--without-acl-support,acl"
68PACKAGECONFIG[aio] = "--with-aio-support,---without-aio-support,libaio" 68PACKAGECONFIG[aio] = "--with-aio-support,--without-aio-support,libaio"
69PACKAGECONFIG[fam] = "--with-fam,--without-fam,gamin" 69PACKAGECONFIG[fam] = "--with-fam,--without-fam,gamin"
70PACKAGECONFIG[pam] = "--with-pam --with-pam_smbpass --with-pammodulesdir=${base_libdir}/security,--without-pam --without-pam_smbpass,libpam" 70PACKAGECONFIG[pam] = "--with-pam --with-pam_smbpass --with-pammodulesdir=${base_libdir}/security,--without-pam --without-pam_smbpass,libpam"
71PACKAGECONFIG[lsb] = ",,lsb" 71PACKAGECONFIG[lsb] = ",,lsb"