diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-09-09 15:31:55 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-09-11 09:05:42 +0100 |
commit | 0e989923f55fccede968dcb74626301e34a72405 (patch) | |
tree | 1d2ca06e9c96f9a8e8e0328146b24319988a7f4c /meta-poky | |
parent | 522010236d7e80e559df0096cf0713cff88ead59 (diff) | |
download | poky-0e989923f55fccede968dcb74626301e34a72405.tar.gz |
poky.conf: Promote unknown-configure-option to QA Error
Currently, this is a QA warning by default, howver its a useful
check to catch configuration errors, where we might have forgotten
to update or adapt configure options on updates/upgrades to a package
(From meta-yocto rev: a75ad2e4227f715146fc1e07f9abef4e80c1aa12)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-poky')
-rw-r--r-- | meta-poky/conf/distro/poky.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-poky/conf/distro/poky.conf b/meta-poky/conf/distro/poky.conf index c5d9e5d6d5..3fdd2f303c 100644 --- a/meta-poky/conf/distro/poky.conf +++ b/meta-poky/conf/distro/poky.conf | |||
@@ -91,7 +91,7 @@ INHERIT += "poky-sanity" | |||
91 | # QA check settings - a little stricter than the OE-Core defaults | 91 | # QA check settings - a little stricter than the OE-Core defaults |
92 | WARN_TO_ERROR_QA = "already-stripped compile-host-path install-host-path \ | 92 | WARN_TO_ERROR_QA = "already-stripped compile-host-path install-host-path \ |
93 | installed-vs-shipped ldflags pn-overrides rpaths staticdev \ | 93 | installed-vs-shipped ldflags pn-overrides rpaths staticdev \ |
94 | useless-rpaths" | 94 | unknown-configure-option useless-rpaths" |
95 | WARN_QA_remove = "${WARN_TO_ERROR_QA}" | 95 | WARN_QA_remove = "${WARN_TO_ERROR_QA}" |
96 | ERROR_QA_append = " ${WARN_TO_ERROR_QA}" | 96 | ERROR_QA_append = " ${WARN_TO_ERROR_QA}" |
97 | 97 | ||