diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-05 15:37:19 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-02-06 12:16:34 +0000 |
commit | 829476febc8432bac1ea0570207ce4aa2d996475 (patch) | |
tree | 86899290917e41ae1f863179408ba33ea4aa14a4 | |
parent | dd41dcbaa3765b9d15484f563416a1c8546e0642 (diff) | |
download | poky-829476febc8432bac1ea0570207ce4aa2d996475.tar.gz |
tar: Fix build determinism, disable rsh
rsh is insecure and obsolete but tar will enable support if the binary is
on the host system. Some systems point it at ssh. Lets explictly disable it
for now unless someone actually needs/uses this at which point it could
become a packageconfig.
(From OE-Core rev: d14a4b0db92a9a7d1ff72a2e0faca7f1a23a0b68)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/tar/tar_1.32.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-extended/tar/tar_1.32.bb b/meta/recipes-extended/tar/tar_1.32.bb index 18f09b5711..ebe6cb0dbd 100644 --- a/meta/recipes-extended/tar/tar_1.32.bb +++ b/meta/recipes-extended/tar/tar_1.32.bb | |||
@@ -22,6 +22,8 @@ PACKAGECONFIG[acl] = "--with-posix-acls,--without-posix-acls,acl" | |||
22 | 22 | ||
23 | EXTRA_OECONF += "DEFAULT_RMT_DIR=${sbindir}" | 23 | EXTRA_OECONF += "DEFAULT_RMT_DIR=${sbindir}" |
24 | 24 | ||
25 | CACHED_CONFIGUREVARS += "tar_cv_path_RSH=no" | ||
26 | |||
25 | # Let aclocal use the relative path for the m4 file rather than the | 27 | # Let aclocal use the relative path for the m4 file rather than the |
26 | # absolute since tar has a lot of m4 files, otherwise there might | 28 | # absolute since tar has a lot of m4 files, otherwise there might |
27 | # be an "Argument list too long" error when it is built in a long/deep | 29 | # be an "Argument list too long" error when it is built in a long/deep |