diff options
author | Kai Kang <kai.kang@windriver.com> | 2015-12-24 17:47:53 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-07 13:40:09 +0000 |
commit | b600adb4297798f108cb38d8ad7581bc517ae56b (patch) | |
tree | 63210f5e7f9d3d16bf2efe05f465b38c645910fb /meta/recipes-extended/bash | |
parent | 90ff7219332d9651fcdfc895d61fb73a46ffde78 (diff) | |
download | openembedded-core-b600adb4297798f108cb38d8ad7581bc517ae56b.tar.gz openembedded-core-b600adb4297798f108cb38d8ad7581bc517ae56b.tar.bz2 openembedded-core-b600adb4297798f108cb38d8ad7581bc517ae56b.zip |
bash: fix buildpaths qa check error
Script bashbug and Makefile for ptest contain build related paths
which cause fail to pass buldpaths QA check.
Remove such paths from these 2 files.
Signed-off-by: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-extended/bash')
-rw-r--r-- | meta/recipes-extended/bash/bash.inc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-extended/bash/bash.inc b/meta/recipes-extended/bash/bash.inc index 85639d3bb9..93ca00b25c 100644 --- a/meta/recipes-extended/bash/bash.inc +++ b/meta/recipes-extended/bash/bash.inc @@ -45,13 +45,15 @@ do_install_append () { } do_install_append_class-target () { # Clean host path in bashbug - sed -i -e "s,${STAGING_DIR_TARGET},,g" ${D}${bindir}/bashbug + sed -i -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \ + -e "s,-I${WORKDIR}/\S* ,,g" ${D}${bindir}/bashbug } do_install_ptest () { make INSTALL_TEST_DIR=${D}${PTEST_PATH}/tests install-test cp ${B}/Makefile ${D}${PTEST_PATH} - sed -i 's/^Makefile/_Makefile/' ${D}${PTEST_PATH}/Makefile + sed -i -e 's/^Makefile/_Makefile/' -e "s,--sysroot=${STAGING_DIR_TARGET},,g" \ + -e "s,${S},,g" -e "s,${B},,g" -e "s,${STAGING_DIR_NATIVE},,g" ${D}${PTEST_PATH}/Makefile } pkg_postinst_${PN} () { |