diff options
author | Juro Bystricky <juro.bystricky@intel.com> | 2017-08-28 13:28:22 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-30 11:20:49 +0100 |
commit | a8ada4759dba6bd003c9ec7a54f996bbcb33751f (patch) | |
tree | c09b73a463cb28f8f5475989d3f24bc1291705ee | |
parent | 693fc377aa0788825b921d1b7804f5b2eafec76f (diff) | |
download | openembedded-core-a8ada4759dba6bd003c9ec7a54f996bbcb33751f.tar.gz openembedded-core-a8ada4759dba6bd003c9ec7a54f996bbcb33751f.tar.bz2 openembedded-core-a8ada4759dba6bd003c9ec7a54f996bbcb33751f.zip |
diffutils_3.6.bb: remove build host references
Remove build host references from diffutils-ptest package.
Signed-off-by: Juro Bystricky <juro.bystricky@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/diffutils/diffutils_3.6.bb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/recipes-extended/diffutils/diffutils_3.6.bb b/meta/recipes-extended/diffutils/diffutils_3.6.bb index a2ea484d88..deadd62c65 100644 --- a/meta/recipes-extended/diffutils/diffutils_3.6.bb +++ b/meta/recipes-extended/diffutils/diffutils_3.6.bb @@ -24,7 +24,12 @@ do_install_ptest() { install -D ${S}/build-aux/test-driver $t/build-aux/test-driver cp -r ${S}/tests $t/ install ${B}/tests/Makefile $t/tests/ - sed -e 's|^Makefile:|_Makefile:|' \ + sed -e 's,--sysroot=${STAGING_DIR_TARGET},,g' \ + -e 's|${DEBUG_PREFIX_MAP}||g' \ + -e 's:${HOSTTOOLS_DIR}/::g' \ + -e 's:${RECIPE_SYSROOT_NATIVE}::g' \ + -e 's:${BASE_WORKDIR}/${MULTIMACH_TARGET_SYS}::g' \ + -e 's|^Makefile:|_Makefile:|' \ -e 's|bash|sh|' \ -e 's|^top_srcdir = \(.*\)|top_srcdir = ..\/|' \ -e 's|^srcdir = \(.*\)|srcdir = .|' \ |