aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2011-05-03 17:37:49 -0400
committerChris Larson <chris_larson@mentor.com>2011-05-03 17:38:59 -0400
commit51872fce3f8b2fcafa9d136e0ca7c22bc07b1787 (patch)
treedd579cd27c4989363811ec4a6ac5a1b36fe7591f
parent36b9a8ea02608a946b82075324e91206ace574cd (diff)
downloadopenembedded-51872fce3f8b2fcafa9d136e0ca7c22bc07b1787.tar.gz
gst-plugins-package: fix with package_dbg
Signed-off-by: Chris Larson <chris_larson@mentor.com>
-rw-r--r--recipes/gstreamer/gst-plugins-package.inc2
1 files changed, 1 insertions, 1 deletions
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)