diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2013-12-04 16:40:27 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-05 12:32:12 +0000 |
commit | 77d0e383303e9209ea2cd74f2eb98e3ed516b67c (patch) | |
tree | 2fc499510cb13f5cb5a267c7a02411dcd5ac9f10 /meta | |
parent | 530764d4301ee9407d20903009efc9d95cd4c3f9 (diff) | |
download | openembedded-core-77d0e383303e9209ea2cd74f2eb98e3ed516b67c.tar.gz openembedded-core-77d0e383303e9209ea2cd74f2eb98e3ed516b67c.tar.bz2 openembedded-core-77d0e383303e9209ea2cd74f2eb98e3ed516b67c.zip |
openssh: remove unrecognised configure option
ssh-rand-helper was removed in OpenSSH 6.0 according to the upstream
changelog, so the configure option to enable/disable it was removed.
Fixes the following warning:
WARNING: QA Issue: openssh: configure was passed unrecognised options: --with-rand-helper
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/openssh/openssh_6.4p1.bb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/openssh/openssh_6.4p1.bb b/meta/recipes-connectivity/openssh/openssh_6.4p1.bb index b9a7580fdc..4f8d70aa2f 100644 --- a/meta/recipes-connectivity/openssh/openssh_6.4p1.bb +++ b/meta/recipes-connectivity/openssh/openssh_6.4p1.bb @@ -55,8 +55,7 @@ inherit autotools CFLAGS += "-D__FILE_OFFSET_BITS=64" export LD = "${CC}" -EXTRA_OECONF = "--with-rand-helper=no \ - ${@base_contains('DISTRO_FEATURES', 'pam', '--with-pam', '--without-pam', d)} \ +EXTRA_OECONF = "${@base_contains('DISTRO_FEATURES', 'pam', '--with-pam', '--without-pam', d)} \ --without-zlib-version-check \ --with-privsep-path=/var/run/sshd \ --sysconfdir=${sysconfdir}/ssh \ |