diff options
-rwxr-xr-x | contrib/oeaudit/oe_audit.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/oeaudit/oe_audit.py b/contrib/oeaudit/oe_audit.py index 13e53beb52..e57bfdfda3 100755 --- a/contrib/oeaudit/oe_audit.py +++ b/contrib/oeaudit/oe_audit.py @@ -71,6 +71,12 @@ def compare_versions(oe, freebsd_dict, not_known): handle_package("%s-native" % package, package) handle_package("%s-full-native" % package, package) handle_package("%s-sdk" % package, package) + handle_package("%s-essential" % package, package) + handle_package("%s-cross" % package, package) + handle_package("%s-initial" % package, package) + handle_package("%s-trim" % package, package) + handle_package("%s-canadian" % package, package) + handle_package("%s-cross-sdk" % package, package) def handle_options(args): import optparse |