diff options
author | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2009-01-15 17:50:24 +0100 |
---|---|---|
committer | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2009-01-15 17:50:24 +0100 |
commit | 555d831d2b137d0fd55516070fce31bf685daea8 (patch) | |
tree | 64e6fb5b3fda0aa798bd28eb6edfb6cbf6f7b9db /packages/gstreamer/gst-plugins.inc | |
parent | 0585ccfa49f71a81652c7f63885202e952ebd0e9 (diff) |
gst-plugins.inc: the 'string' module is deprecated in favour of calling methods on string objects.
Diffstat (limited to 'packages/gstreamer/gst-plugins.inc')
-rw-r--r-- | packages/gstreamer/gst-plugins.inc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/gstreamer/gst-plugins.inc b/packages/gstreamer/gst-plugins.inc index 843ee69cd8..c0b15ef38b 100644 --- a/packages/gstreamer/gst-plugins.inc +++ b/packages/gstreamer/gst-plugins.inc @@ -17,7 +17,6 @@ OE_LT_RPATH_ALLOW[export]="1" LIBV = "0.10" python populate_packages_prepend () { - import string gst_libdir = bb.data.expand('${libdir}/gstreamer-${LIBV}', d) postinst = bb.data.getVar('plugin_postinst', d, 1) @@ -32,7 +31,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 string.count(pkg, 'dev') and not string.count(pkg,'locale'): + if not pkg in blacklist and not pkg in metapkg_rdepends and not pkg.count('dev') and not pkg.count( 'locale' ): metapkg_rdepends.append(pkg) bb.data.setVar('RDEPENDS_' + metapkg, ' '.join(metapkg_rdepends), d) bb.data.setVar('DESCRIPTION_' + metapkg, pn + ' meta package', d) |