diff options
author | Ross Burton <ross.burton@intel.com> | 2015-02-02 23:32:31 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-02-03 12:43:22 +0000 |
commit | 013f7e286d72c51b52a72fdbff6cbc875b3a15ac (patch) | |
tree | 665d0cb3abb9a0dcead6eddaac10adc761a6b9ad /meta-yocto | |
parent | 3ebb522cc64187b42e404f45d203d1a9dffdb2be (diff) | |
download | poky-013f7e286d72c51b52a72fdbff6cbc875b3a15ac.tar.gz |
poky.conf: use logic to edit WARN_QA and ERROR_QA
Instead of overriding WARN_QA and ERROR_QA, edit the defaults to remove specific
tests from WARN_QA and add them to ERROR_QA.
This should avoid tests being added to poky.conf but not insane.bbclass
(unknown-configure-option wasn't enabled in oe-core), or vice versa (infodir
wasn't enabled in Poky).
(From meta-yocto rev: 32f5014c871f5fd86262fb6a87b60360b1b21d07)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto')
-rw-r--r-- | meta-yocto/conf/distro/poky.conf | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/meta-yocto/conf/distro/poky.conf b/meta-yocto/conf/distro/poky.conf index 9cb2f3a902..479182f56c 100644 --- a/meta-yocto/conf/distro/poky.conf +++ b/meta-yocto/conf/distro/poky.conf | |||
@@ -100,10 +100,8 @@ OELAYOUT_ABI = "10" | |||
100 | INHERIT += "poky-sanity" | 100 | INHERIT += "poky-sanity" |
101 | 101 | ||
102 | # QA check settings - a little stricter than the OE-Core defaults | 102 | # QA check settings - a little stricter than the OE-Core defaults |
103 | WARN_QA = "textrel files-invalid incompatible-license xorg-driver-abi libdir \ | 103 | WARN_TO_ERROR_QA = "already-stripped compile-host-path install-host-path \ |
104 | unknown-configure-option build-deps file-rdeps" | 104 | installed-vs-shipped ldflags pn-overrides rpaths staticdev \ |
105 | ERROR_QA = "dev-so debug-deps dev-deps debug-files arch pkgconfig la perms \ | 105 | useless-rpaths" |
106 | useless-rpaths rpaths staticdev ldflags pkgvarcheck already-stripped \ | 106 | WARN_QA_remove = "${WARN_TO_ERROR_QA}" |
107 | compile-host-path dep-cmp installed-vs-shipped install-host-path \ | 107 | ERROR_QA_append = " ${WARN_TO_ERROR_QA}" |
108 | packages-list perm-config perm-line perm-link pkgv-undefined \ | ||
109 | pn-overrides split-strip var-undefined version-going-backwards" | ||