summaryrefslogtreecommitdiffstats
path: root/meta/classes/package.bbclass
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2012-01-13 17:35:46 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-17 14:53:25 +0000
commitee7fb2b86df6e66eefa5a0d98441536e8b424038 (patch)
tree71a2a1416e90fe984862faae1ca4b6f97b06710b /meta/classes/package.bbclass
parent9d6bf93e9d21206b1f0da29d4079cc2356a7056e (diff)
downloadpoky-ee7fb2b86df6e66eefa5a0d98441536e8b424038.tar.gz
classes/package: remove out-of-date notice referring to the OE bugtracker
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. (From OE-Core rev: ee486e30432ffd3ef97ba16511a9a1a38bad3826) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/package.bbclass')
-rw-r--r--meta/classes/package.bbclass3
1 files changed, 0 insertions, 3 deletions
diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass
index 108847094e..45447e3b33 100644
--- a/meta/classes/package.bbclass
+++ b/meta/classes/package.bbclass
@@ -887,10 +887,7 @@ python populate_packages () {
887 package_list = [] 887 package_list = []
888 for pkg in packages.split(): 888 for pkg in packages.split():
889 if pkg in package_list: 889 if pkg in package_list:
890 bb.error("-------------------")
891 bb.error("%s is listed in PACKAGES multiple times, this leads to packaging errors." % pkg) 890 bb.error("%s is listed in PACKAGES multiple times, this leads to packaging errors." % pkg)
892 bb.error("Please fix the metadata/report this as bug to OE bugtracker.")
893 bb.error("-------------------")
894 else: 891 else:
895 package_list.append(pkg) 892 package_list.append(pkg)
896 893