diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2020-01-14 13:56:08 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-01-27 16:48:08 +0000 |
commit | 5f3bfc5b0f686e56663af7ff444d9beaef594657 (patch) | |
tree | 32ae6fc0fb3b45d809b00f86be5acb69612fbb8a | |
parent | c6b06adb7f4c9817dff6602a33b6256427580950 (diff) | |
download | poky-5f3bfc5b0f686e56663af7ff444d9beaef594657.tar.gz |
enchant2: fix qa issue about staticdev
staticdev package defaults to include ${libdir}/${BPN}/*.a, but
for enchant2, the file locates under ${libdir}/echant-2/. So fix
it to avoid the following QA issue.
QA Issue: non -staticdev package contains static .a library: enchant2 path '/.../usr/lib/enchant-2/enchant_aspell.a'
(From OE-Core rev: b92a74d1e0a66dfb87e1e2626df232174151867e)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/enchant/enchant2_2.2.7.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-support/enchant/enchant2_2.2.7.bb b/meta/recipes-support/enchant/enchant2_2.2.7.bb index bdfd738487..03db5c7fae 100644 --- a/meta/recipes-support/enchant/enchant2_2.2.7.bb +++ b/meta/recipes-support/enchant/enchant2_2.2.7.bb | |||
@@ -26,3 +26,4 @@ FILES_${PN} += " \ | |||
26 | ${datadir}/enchant-2 \ | 26 | ${datadir}/enchant-2 \ |
27 | ${libdir}/enchant-2 \ | 27 | ${libdir}/enchant-2 \ |
28 | " | 28 | " |
29 | FILES_${PN}-staticdev += "${libdir}/enchant-2/*.a" | ||