diff options
author | Mikko Rapeli <mikko.rapeli@bmw.de> | 2018-06-13 10:15:56 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-18 11:07:57 +0100 |
commit | ad85e224a41a1e8708e7f3acb6f847ce893969e7 (patch) | |
tree | e940bdaf6416f7856fa98aca174db2fed402ab34 /meta | |
parent | 7d3ad1405ca3f891db82091f31783a650a6bc681 (diff) | |
download | poky-ad85e224a41a1e8708e7f3acb6f847ce893969e7.tar.gz |
openssh: add nativesdk support
And use bitbake variables for install paths to fix nativesdk-openssh
compilation.
(From OE-Core rev: 70470dfa88338cae06670195bb7009cb13098ac2)
Signed-off-by: Mikko Rapeli <mikko.rapeli@bmw.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-connectivity/openssh/openssh_7.7p1.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-connectivity/openssh/openssh_7.7p1.bb b/meta/recipes-connectivity/openssh/openssh_7.7p1.bb index 6b67782695..b3da5f6761 100644 --- a/meta/recipes-connectivity/openssh/openssh_7.7p1.bb +++ b/meta/recipes-connectivity/openssh/openssh_7.7p1.bb | |||
@@ -52,9 +52,9 @@ EXTRA_AUTORECONF += "--exclude=aclocal" | |||
52 | EXTRA_OECONF = "'LOGIN_PROGRAM=${base_bindir}/login' \ | 52 | EXTRA_OECONF = "'LOGIN_PROGRAM=${base_bindir}/login' \ |
53 | ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--with-pam', '--without-pam', d)} \ | 53 | ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--with-pam', '--without-pam', d)} \ |
54 | --without-zlib-version-check \ | 54 | --without-zlib-version-check \ |
55 | --with-privsep-path=/var/run/sshd \ | 55 | --with-privsep-path=${localstatedir}/run/sshd \ |
56 | --sysconfdir=${sysconfdir}/ssh \ | 56 | --sysconfdir=${sysconfdir}/ssh \ |
57 | --with-xauth=/usr/bin/xauth \ | 57 | --with-xauth=${bindir}/xauth \ |
58 | --disable-strip \ | 58 | --disable-strip \ |
59 | " | 59 | " |
60 | 60 | ||
@@ -160,3 +160,5 @@ CONFFILES_${PN}-ssh = "${sysconfdir}/ssh/ssh_config" | |||
160 | ALTERNATIVE_PRIORITY = "90" | 160 | ALTERNATIVE_PRIORITY = "90" |
161 | ALTERNATIVE_${PN}-scp = "scp" | 161 | ALTERNATIVE_${PN}-scp = "scp" |
162 | ALTERNATIVE_${PN}-ssh = "ssh" | 162 | ALTERNATIVE_${PN}-ssh = "ssh" |
163 | |||
164 | BBCLASSEXTEND += "nativesdk" | ||