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 <paul.eggleton@linux.intel.com>
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)