From: Christopher Larson Date: Mon, 21 Jan 2013 02:34:26 +0000 (-0700) Subject: package.bbclass: drop unnecessary and broken packages.remove() X-Git-Tag: 2015-4~7940 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=5480371d0473482437ce4350e6593f006101ef40;p=openembedded-core.git package.bbclass: drop unnecessary and broken packages.remove() Signed-off-by: Christopher Larson Signed-off-by: Richard Purdie --- diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 4794f0ece1..8e07168be3 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -948,7 +948,6 @@ python populate_packages () { for pkg in packages.split(): if d.getVar('LICENSE_EXCLUSION-' + pkg, True): bb.warn("%s has an incompatible license. Excluding from packaging." % pkg) - packages.remove(pkg) else: if pkg in package_list: bb.error("%s is listed in PACKAGES multiple times, this leads to packaging errors." % pkg)