From 51872fce3f8b2fcafa9d136e0ca7c22bc07b1787 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Tue, 3 May 2011 17:37:49 -0400 Subject: gst-plugins-package: fix with package_dbg Signed-off-by: Chris Larson --- recipes/gstreamer/gst-plugins-package.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/gstreamer/gst-plugins-package.inc b/recipes/gstreamer/gst-plugins-package.inc index cc1bec6eab..9493b33d85 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) -- cgit 1.2.3-korg