diff options
author | Jackie Huang <jackie.huang@windriver.com> | 2016-09-22 16:13:06 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-10-03 19:18:51 +0200 |
commit | 93d85f6999d1d4eb8c5183c0ecb03c94253c8f71 (patch) | |
tree | 5da246f4c25c36937eba24c84f76afa3a392e999 | |
parent | 520dee9774a5c31247f722836655399d8b9e9599 (diff) | |
download | meta-openembedded-93d85f6999d1d4eb8c5183c0ecb03c94253c8f71.tar.gz |
mpich: fix QA issue and remove blacklist
Remove the reference of S from .la and DEBUG_PREFIX_MAP
from .pc file to avoid QA issues.
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb b/meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb index ead1f615c..1dee6bd62 100644 --- a/meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb +++ b/meta-oe/recipes-devtools/mpich/mpich_3.1.1.bb | |||
@@ -36,5 +36,7 @@ do_configure_prepend() { | |||
36 | exit | 36 | exit |
37 | } | 37 | } |
38 | 38 | ||
39 | # http://errors.yoctoproject.org/Errors/Details/35146/ | 39 | do_install_append() { |
40 | PNBLACKLIST[mpich] ?= "BROKEN: QA Issue: libmpi.la failed sanity test (workdir), QA Issue: mpich.pc failed sanity test (tmpdir)" | 40 | sed -i 's,${S}/,,g' ${D}/${libdir}/libmpi.la |
41 | sed -i 's,${DEBUG_PREFIX_MAP},,g' ${D}/${libdir}/pkgconfig/mpich.pc | ||
42 | } | ||