diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2010-07-12 15:29:37 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-14 09:55:55 +0100 |
commit | e1ed3900fabad7d62dea4ee84ecfd4db62f8ad08 (patch) | |
tree | 685af087ce360d6db5b692110bd70e8492111843 /meta/packages/gstreamer/gst-plugins.inc | |
parent | e388cb142a9f79faf528aee6e7d56714f5596450 (diff) | |
download | openembedded-core-e1ed3900fabad7d62dea4ee84ecfd4db62f8ad08.tar.gz openembedded-core-e1ed3900fabad7d62dea4ee84ecfd4db62f8ad08.tar.bz2 openembedded-core-e1ed3900fabad7d62dea4ee84ecfd4db62f8ad08.zip |
gst-plugins: fix multiple providers warning
Rename all the sub-plugin to eliminate the inclusion by all plugins set
This can fix the multple providers warning
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta/packages/gstreamer/gst-plugins.inc')
-rw-r--r-- | meta/packages/gstreamer/gst-plugins.inc | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/meta/packages/gstreamer/gst-plugins.inc b/meta/packages/gstreamer/gst-plugins.inc index 9146d3eb85..bc7a373619 100644 --- a/meta/packages/gstreamer/gst-plugins.inc +++ b/meta/packages/gstreamer/gst-plugins.inc @@ -14,19 +14,20 @@ EXTRA_OECONF = "--disable-valgrind --disable-debug --disable-examples " acpaths = "-I ${S}/common/m4 -I ${S}/m4" LIBV = "0.10" -PACKAGES_DYNAMIC = "gst-plugin-*" #FILES_${PN} += "${libdir}/gstreamer-${LIBV}/*.so" #FILES_${PN}-dev += "${libdir}/gstreamer-${LIBV}/*.la ${libdir}/gstreamer-${LIBV}/*.a" FILES_${PN}-dbg += "${libdir}/gstreamer-${LIBV}/.debug" +PACKAGES_DYNAMIC = "${PN}-*" + python populate_packages_prepend () { gst_libdir = bb.data.expand('${libdir}/gstreamer-${LIBV}', d) postinst = bb.data.getVar('plugin_postinst', d, 1) # Can't package separate debug packages yet -# do_split_packages(d, gst_libdir, '\.debug/libgst(.*)\.so$', 'gst-plugin-%s-dbg', 'GStreamer plugin for %s (with debugging symbols)', recursive=True, extra_depends=bb.data.expand('${PN}-dbg', d), match_path=True) - do_split_packages(d, gst_libdir, 'libgst(.*)\.so$', 'gst-plugin-%s', 'GStreamer plugin for %s', postinst=postinst, extra_depends=bb.data.expand('${PN}',d)) - do_split_packages(d, gst_libdir, 'libgst(.*)\.l?a$', 'gst-plugin-%s-dev', 'GStreamer plugin for %s (development files)', extra_depends=bb.data.expand('${PN}-dev',d)) +# do_split_packages(d, gst_libdir, '\.debug/libgst(.*)\.so$', '${PN}-%s-dbg', 'GStreamer plugin for %s (with debugging symbols)', recursive=True, extra_depends=bb.data.expand('${PN}-dbg', d), match_path=True) + do_split_packages(d, gst_libdir, 'libgst(.*)\.so$', '${PN}-%s', 'GStreamer plugin for %s', postinst=postinst, extra_depends=bb.data.expand('${PN}',d)) + do_split_packages(d, gst_libdir, 'libgst(.*)\.l?a$', '${PN}-%s-dev', 'GStreamer plugin for %s (development files)', extra_depends=bb.data.expand('${PN}-dev',d)) } ALLOW_EMPTY = "1" |