summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core
diff options
context:
space:
mode:
authorDmitry Eremin-Solenikov <dbaryshkov@gmail.com>2011-09-21 22:39:57 +0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-22 05:12:30 +0100
commit2da22470c8a3f0572c5a13a16ab1bf1a37b95b71 (patch)
tree491ec7174bf3c64d41e0217f07729969725ac8f5 /meta/recipes-core
parent2179edee1d0d994da9b0253bca56d9036199adad (diff)
downloadpoky-2da22470c8a3f0572c5a13a16ab1bf1a37b95b71.tar.gz
gettext: shut up unshipped files warning
It seems nobody uses preloadable_libintl.so in OE world. It's not included in any package. To stop oe-core from emiting a unshipped files warning, remove that file in the end of do_install. (From OE-Core rev: 9d33b6973438f514f1ca609c3a936b45af921e2f) Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r--meta/recipes-core/gettext/gettext_0.18.1.1.bb7
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/recipes-core/gettext/gettext_0.18.1.1.bb b/meta/recipes-core/gettext/gettext_0.18.1.1.bb
index 2c0b2f8be3..fabd1263ae 100644
--- a/meta/recipes-core/gettext/gettext_0.18.1.1.bb
+++ b/meta/recipes-core/gettext/gettext_0.18.1.1.bb
@@ -5,7 +5,7 @@ SECTION = "libs"
5LICENSE = "GPLv3" 5LICENSE = "GPLv3"
6LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504" 6LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
7 7
8PR = "r3" 8PR = "r4"
9DEPENDS = "libxml2-native gettext-native virtual/libiconv ncurses expat" 9DEPENDS = "libxml2-native gettext-native virtual/libiconv ncurses expat"
10DEPENDS_virtclass-native = "libxml2-native" 10DEPENDS_virtclass-native = "libxml2-native"
11PROVIDES = "virtual/libintl virtual/gettext" 11PROVIDES = "virtual/libintl virtual/gettext"
@@ -90,4 +90,9 @@ FILES_gettext-runtime-doc = "${mandir}/man1/gettext.* \
90 ${docdir}/libasprintf/autosprintf.html \ 90 ${docdir}/libasprintf/autosprintf.html \
91 ${infodir}/autosprintf.info \ 91 ${infodir}/autosprintf.info \
92 " 92 "
93
94do_install_append() {
95 rm -f ${D}${libdir}/preloadable_libintl.so
96}
97
93BBCLASSEXTEND = "native nativesdk" 98BBCLASSEXTEND = "native nativesdk"