diff options
author | Jussi Kukkonen <jussi.kukkonen@intel.com> | 2017-06-09 10:36:18 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-12 15:04:12 +0100 |
commit | 3f7fd738981752a8c34c6cf4a1f2d4c035b081ca (patch) | |
tree | 1426569f84c53ea4a386f5d827d4eaa3fe76112b | |
parent | 266545f5f5758be397a6c2cd4727d5c0895c924d (diff) | |
download | openembedded-core-3f7fd738981752a8c34c6cf4a1f2d4c035b081ca.tar.gz openembedded-core-3f7fd738981752a8c34c6cf4a1f2d4c035b081ca.tar.bz2 openembedded-core-3f7fd738981752a8c34c6cf4a1f2d4c035b081ca.zip |
diffutils: prevent host path leaks, set pr path
Note that this just removes a host path leakage: diffutils still
doesn't depend on coreutils so 'pr' might not actually be there
on image (this only breaks "diff -l" so no big deal).
Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/recipes-extended/diffutils/diffutils_3.5.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/diffutils/diffutils_3.5.bb b/meta/recipes-extended/diffutils/diffutils_3.5.bb index 354a6e84fb..a4fc27bec3 100644 --- a/meta/recipes-extended/diffutils/diffutils_3.5.bb +++ b/meta/recipes-extended/diffutils/diffutils_3.5.bb @@ -11,7 +11,7 @@ SRC_URI = "${GNU_MIRROR}/diffutils/diffutils-${PV}.tar.xz \ SRC_URI[md5sum] = "569354697ff1cfc9a9de3781361015fa" SRC_URI[sha256sum] = "dad398ccd5b9faca6b0ab219a036453f62a602a56203ac659b43e889bec35533" -EXTRA_OECONF += "--without-libsigsegv-prefix" +EXTRA_OECONF += "ac_cv_path_PR_PROGRAM=${bindir}/pr --without-libsigsegv-prefix" # Fix "Argument list too long" error when len(TMPDIR) = 410 acpaths = "-I ./m4" |