summaryrefslogtreecommitdiffstats
path: root/meta/recipes-connectivity/openssh
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2017-11-30 12:30:43 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-12-10 22:45:19 +0000
commit58a8c840a0cf1216cb282c9c8df7777bd93b1cc8 (patch)
tree878b5f057e8e46cd130b5b04ba2490f6dbaf3bf0 /meta/recipes-connectivity/openssh
parentb110fedea5246b6fd3279a1a80e1b41e4cae016e (diff)
downloadpoky-58a8c840a0cf1216cb282c9c8df7777bd93b1cc8.tar.gz
openssh: don't do aclocal/acinclude dance
Instead, just stop running aclocal. (From OE-Core rev: 0582396081b638811174f9371feacbbf4593bd1a) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/openssh')
-rw-r--r--meta/recipes-connectivity/openssh/openssh_7.6p1.bb6
1 files changed, 2 insertions, 4 deletions
diff --git a/meta/recipes-connectivity/openssh/openssh_7.6p1.bb b/meta/recipes-connectivity/openssh/openssh_7.6p1.bb
index ebb9a5734d..9d940d4590 100644
--- a/meta/recipes-connectivity/openssh/openssh_7.6p1.bb
+++ b/meta/recipes-connectivity/openssh/openssh_7.6p1.bb
@@ -48,6 +48,8 @@ inherit autotools-brokensep ptest
48# LFS support: 48# LFS support:
49CFLAGS += "-D__FILE_OFFSET_BITS=64" 49CFLAGS += "-D__FILE_OFFSET_BITS=64"
50 50
51EXTRA_AUTORECONF += "--exclude=aclocal"
52
51# login path is hardcoded in sshd 53# login path is hardcoded in sshd
52EXTRA_OECONF = "'LOGIN_PROGRAM=${base_bindir}/login' \ 54EXTRA_OECONF = "'LOGIN_PROGRAM=${base_bindir}/login' \
53 ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--with-pam', '--without-pam', d)} \ 55 ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--with-pam', '--without-pam', d)} \
@@ -73,9 +75,6 @@ do_configure_prepend () {
73 export LD="${CC}" 75 export LD="${CC}"
74 install -m 0644 ${WORKDIR}/sshd_config ${B}/ 76 install -m 0644 ${WORKDIR}/sshd_config ${B}/
75 install -m 0644 ${WORKDIR}/ssh_config ${B}/ 77 install -m 0644 ${WORKDIR}/ssh_config ${B}/
76 if [ ! -e acinclude.m4 -a -e aclocal.m4 ]; then
77 cp aclocal.m4 acinclude.m4
78 fi
79} 78}
80 79
81do_compile_ptest() { 80do_compile_ptest() {
@@ -162,4 +161,3 @@ CONFFILES_${PN}-ssh = "${sysconfdir}/ssh/ssh_config"
162ALTERNATIVE_PRIORITY = "90" 161ALTERNATIVE_PRIORITY = "90"
163ALTERNATIVE_${PN}-scp = "scp" 162ALTERNATIVE_${PN}-scp = "scp"
164ALTERNATIVE_${PN}-ssh = "ssh" 163ALTERNATIVE_${PN}-ssh = "ssh"
165