From 555d831d2b137d0fd55516070fce31bf685daea8 Mon Sep 17 00:00:00 2001 From: Michael 'Mickey' Lauer Date: Thu, 15 Jan 2009 17:50:24 +0100 Subject: gst-plugins.inc: the 'string' module is deprecated in favour of calling methods on string objects. --- packages/gstreamer/gst-plugins.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'packages/gstreamer') 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) -- cgit v1.2.3