diff options
author | Paul Barker <pbarker@toganlabs.com> | 2018-01-18 18:03:33 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-01-22 10:39:09 +0000 |
commit | 668dd50a05a4ca7dcd00346cc5937277fb1a4cc2 (patch) | |
tree | 75fb15f4d43e54c6ebe484f95ffa3dca2496565a /meta/recipes-connectivity/openssh | |
parent | 7333ebf2fd07ecb7f39a4d976d41ba620d41b139 (diff) | |
download | poky-668dd50a05a4ca7dcd00346cc5937277fb1a4cc2.tar.gz |
openssh: Disable wtmp when using musl libc
musl doesn't implement wtmp/utmp.
(From OE-Core rev: 2065bb297ff3e48801bc8458d85f4f66a3e69daf)
Signed-off-by: Paul Barker <pbarker@toganlabs.com>
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.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-connectivity/openssh/openssh_7.6p1.bb b/meta/recipes-connectivity/openssh/openssh_7.6p1.bb index 9d940d4590..a2288dfe08 100644 --- a/meta/recipes-connectivity/openssh/openssh_7.6p1.bb +++ b/meta/recipes-connectivity/openssh/openssh_7.6p1.bb | |||
@@ -60,6 +60,9 @@ EXTRA_OECONF = "'LOGIN_PROGRAM=${base_bindir}/login' \ | |||
60 | --disable-strip \ | 60 | --disable-strip \ |
61 | " | 61 | " |
62 | 62 | ||
63 | # musl doesn't implement wtmp/utmp | ||
64 | EXTRA_OECONF_append_libc-musl = " --disable-wtmp" | ||
65 | |||
63 | # Since we do not depend on libbsd, we do not want configure to use it | 66 | # Since we do not depend on libbsd, we do not want configure to use it |
64 | # just because it finds libutil.h. But, specifying --disable-libutil | 67 | # just because it finds libutil.h. But, specifying --disable-libutil |
65 | # causes compile errors, so... | 68 | # causes compile errors, so... |