diff options
author | Khem Raj <raj.khem@gmail.com> | 2017-03-19 22:31:46 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-03-31 13:25:58 +0200 |
commit | 64640f4e30d7756d80157d49342ae174db2fa065 (patch) | |
tree | b4c61d8204f2c543334a784a7d2da1c96e991d23 /meta-oe/recipes-support/zile | |
parent | d92ee32a616f80f5e835ed503e5c9fc440f377b2 (diff) | |
download | meta-openembedded-64640f4e30d7756d80157d49342ae174db2fa065.tar.gz |
zile: Fix build with musl
With musl charset.alias is generated due to a gnu-config bug
Fixes
QA Issue: zile: Files/directories were installed but not shipped in any package:
/usr/lib
/usr/lib/charset.alias
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/zile')
-rw-r--r-- | meta-oe/recipes-support/zile/zile_2.4.11.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/zile/zile_2.4.11.bb b/meta-oe/recipes-support/zile/zile_2.4.11.bb index ff0517c8a7..05a6afbe9f 100644 --- a/meta-oe/recipes-support/zile/zile_2.4.11.bb +++ b/meta-oe/recipes-support/zile/zile_2.4.11.bb | |||
@@ -14,6 +14,11 @@ SRC_URI[sha256sum] = "1fd27bbddc61491b1fbb29a345d0d344734aa9e80cfa07b02892eedf83 | |||
14 | 14 | ||
15 | inherit autotools pkgconfig | 15 | inherit autotools pkgconfig |
16 | 16 | ||
17 | do_install_append() { | ||
18 | rm -rf ${D}${libdir}/charset.alias | ||
19 | rmdir --ignore-fail-on-non-empty ${D}${libdir} | ||
20 | } | ||
21 | |||
17 | PACKAGECONFIG ??= "" | 22 | PACKAGECONFIG ??= "" |
18 | PACKAGECONFIG += "${@bb.utils.filter('DISTRO_FEATURES', 'acl', d)}" | 23 | PACKAGECONFIG += "${@bb.utils.filter('DISTRO_FEATURES', 'acl', d)}" |
19 | 24 | ||