From: Richard Purdie Date: Sat, 21 Oct 2006 22:22:03 +0000 (+0000) Subject: package.bbclass: Fix split_locales to remove spurious references to -dbg packages... X-Git-Tag: Release-2010-05/1~9453^2~567^2~48 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33acb0ba0c1dbda1892755bb6538a0cdb547f26f;p=openembedded.git package.bbclass: Fix split_locales to remove spurious references to -dbg packages. The way it selects the principle package name needs totally reworking as the current code is flawed but apply a workaround for now (this is unrelated to other changes to package.bbclass) --- diff --git a/classes/package.bbclass b/classes/package.bbclass index c70f08eefe..bc84b4ebf8 100644 --- a/classes/package.bbclass +++ b/classes/package.bbclass @@ -268,8 +268,14 @@ python package_do_split_locales() { locales = os.listdir(localedir) + # This is *really* broken mainpkg = packages[0] - + # At least try and patch it up I guess... + if mainpkg.find('-dbg'): + mainpkg = mainpkg.replace('-dbg', '') + if mainpkg.find('-dev'): + mainpkg = mainpkg.replace('-dev', '') + for l in locales: ln = legitimize_package_name(l) pkg = pn + '-locale-' + ln