[oe-commits] Chris Larson : gst-plugins-package: fix with package_dbg

git version control git at git.openembedded.org
Thu May 5 20:01:52 UTC 2011


Module: openembedded.git
Branch: testing-next
Commit: 51872fce3f8b2fcafa9d136e0ca7c22bc07b1787
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=51872fce3f8b2fcafa9d136e0ca7c22bc07b1787

Author: Chris Larson <chris_larson at mentor.com>
Date:   Tue May  3 17:37:49 2011 -0400

gst-plugins-package: fix with package_dbg

Signed-off-by: Chris Larson <chris_larson at mentor.com>

---

 recipes/gstreamer/gst-plugins-package.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/gstreamer/gst-plugins-package.inc b/recipes/gstreamer/gst-plugins-package.inc
index cc1bec6..9493b33 100644
--- a/recipes/gstreamer/gst-plugins-package.inc
+++ b/recipes/gstreamer/gst-plugins-package.inc
@@ -17,7 +17,7 @@ python populate_packages_prepend () {
 	metapkg_rdepends = []
 	packages = bb.data.getVar('PACKAGES', d, 1).split()
 	for pkg in packages[1:]:
-		if not pkg in blacklist and not pkg in metapkg_rdepends and not pkg.endswith('-dev') and not pkg.count('locale') and not pkg.count('-static'):
+		if not pkg in blacklist and not pkg in metapkg_rdepends and not pkg.endswith('-dev') and not pkg.endswith('-dbg') and not pkg.count('locale') and not pkg.count('-static'):
 			metapkg_rdepends.append(pkg)
 	bb.data.setVar('RDEPENDS_' + metapkg, ' '.join(metapkg_rdepends), d)
 	bb.data.setVar('DESCRIPTION_' + metapkg, pn + ' meta package', d)





More information about the Openembedded-commits mailing list