diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-10-21 14:18:50 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-10-24 12:17:37 +0100 |
commit | a40e69508e66268e0743502334797374dee31125 (patch) | |
tree | 690c40eadc33e8360dc571642b5fccddb9e3e23e /meta/classes | |
parent | 5c515a1c7a86c510b6ae4f99c5b2e20d52622543 (diff) | |
download | openembedded-core-a40e69508e66268e0743502334797374dee31125.tar.gz openembedded-core-a40e69508e66268e0743502334797374dee31125.tar.bz2 openembedded-core-a40e69508e66268e0743502334797374dee31125.zip |
classes/insane: rename invalid-pkgconfig QA check to invalid-packageconfig
We have enough confusing name clashes already, let's not precipitate
another one.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/insane.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index f7be61b363..a77438db54 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass @@ -32,7 +32,7 @@ WARN_QA ?= "ldflags useless-rpaths rpaths staticdev libdir xorg-driver-abi \ installed-vs-shipped compile-host-path install-host-path \ pn-overrides infodir build-deps file-rdeps \ unknown-configure-option symlink-to-sysroot multilib \ - invalid-pkgconfig host-user-contaminated \ + invalid-packageconfig host-user-contaminated \ " ERROR_QA ?= "dev-so debug-deps dev-deps debug-files arch pkgconfig la \ perms dep-cmp pkgvarcheck perm-config perm-line perm-link \ @@ -1210,7 +1210,7 @@ Missing inherit gettext?""" % (gt, config)) if pconfig not in pkgconfigflags: pn = d.getVar('PN', True) error_msg = "%s: invalid PACKAGECONFIG: %s" % (pn, pconfig) - package_qa_handle_error("invalid-pkgconfig", error_msg, d) + package_qa_handle_error("invalid-packageconfig", error_msg, d) } python do_qa_unpack() { |