diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-13 12:57:08 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-13 23:17:28 +0000 |
commit | 9be4f5f6e0e28429b1a0c04561bfb79b54f0599d (patch) | |
tree | d62a85b1a14d9499622c8656098bd6ec4605dca7 | |
parent | 58b2b72852389b9454dd9082ad2b22b2efbb2c19 (diff) | |
download | openembedded-core-9be4f5f6e0e28429b1a0c04561bfb79b54f0599d.tar.gz openembedded-core-9be4f5f6e0e28429b1a0c04561bfb79b54f0599d.tar.bz2 openembedded-core-9be4f5f6e0e28429b1a0c04561bfb79b54f0599d.zip |
libxslt: Fix unpackaged directory warning
Fixes the warning:
WARNING: For recipe libxslt, the following files/directories were installed but not shipped in any package:
WARNING: /usr/lib/libxslt-plugins
It makes sense for the package to own the plugins directory.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/libxslt/libxslt_1.1.26.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-support/libxslt/libxslt_1.1.26.bb b/meta/recipes-support/libxslt/libxslt_1.1.26.bb index f3e806d989..8986e20723 100644 --- a/meta/recipes-support/libxslt/libxslt_1.1.26.bb +++ b/meta/recipes-support/libxslt/libxslt_1.1.26.bb @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://Copyright;md5=0cd9a07afbeb24026c9b03aecfeba458" SECTION = "libs" DEPENDS = "libxml2" -PR = "r6" +PR = "r7" SRC_URI = "ftp://xmlsoft.org/libxslt//libxslt-${PV}.tar.gz \ file://pkgconfig_fix.patch" @@ -24,6 +24,7 @@ RPROVIDES_${PN}-bin += "${PN}-utils" RCONFLICTS_${PN}-bin += "${PN}-utils" RREPLACES_${PN}-bin += "${PN}-utils" +FILES_${PN} += "${libdir}/libxslt-plugins" FILES_${PN}-dev += "${libdir}/xsltConf.sh" BBCLASSEXTEND = "native" |