From patchwork Fri Jan 13 17:42:58 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [3/4] classes/package: remove out-of-date notice referring to the OE bugtracker Date: Fri, 13 Jan 2012 17:42:58 -0000 From: Paul Eggleton X-Patchwork-Id: 19323 Message-Id: <517b09c9a6bfdb8108a6b999d6b101d3fbc96d7f.1326476501.git.paul.eggleton@linux.intel.com> To: openembedded-core@lists.openembedded.org OpenEmbedded doesn't officially use a bug tracker anymore, and a message asking the user to fix the metadata could be applied to almost any error that occurs, so just remove the whole message. Signed-off-by: Paul Eggleton --- meta/classes/package.bbclass | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index f8f0a12..f06bf92 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -887,10 +887,7 @@ python populate_packages () { package_list = [] for pkg in packages.split(): if pkg in package_list: - bb.error("-------------------") bb.error("%s is listed in PACKAGES multiple times, this leads to packaging errors." % pkg) - bb.error("Please fix the metadata/report this as bug to OE bugtracker.") - bb.error("-------------------") else: package_list.append(pkg)