diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-16 20:33:47 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-02-21 23:37:27 +0000 |
commit | 71ef3191938da772b07274165dd3a85c2ed011f1 (patch) | |
tree | fd830ada451fec669352cb0dfc1bb316ea9cefd8 /meta/classes/insane.bbclass | |
parent | 5a3d6c7bda0f158473c82d1c38ae2df26192dccb (diff) | |
download | poky-71ef3191938da772b07274165dd3a85c2ed011f1.tar.gz |
meta/scripts: Automated conversion of OE renamed variables
(From OE-Core rev: aa52af4518604b5bf13f3c5e885113bf868d6c81)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/insane.bbclass')
-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 a28fcd4798..4fc3c06c64 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -48,7 +48,7 @@ enabled tests are listed here, the do_package_qa task will run under fakeroot." | |||
48 | 48 | ||
49 | ALL_QA = "${WARN_QA} ${ERROR_QA}" | 49 | ALL_QA = "${WARN_QA} ${ERROR_QA}" |
50 | 50 | ||
51 | UNKNOWN_CONFIGURE_WHITELIST ?= "--enable-nls --disable-nls --disable-silent-rules --disable-dependency-tracking --with-libtool-sysroot --disable-static" | 51 | UNKNOWN_CONFIGURE_OPT_IGNORE ?= "--enable-nls --disable-nls --disable-silent-rules --disable-dependency-tracking --with-libtool-sysroot --disable-static" |
52 | 52 | ||
53 | # This is a list of directories that are expected to be empty. | 53 | # This is a list of directories that are expected to be empty. |
54 | QA_EMPTY_DIRS ?= " \ | 54 | QA_EMPTY_DIRS ?= " \ |
@@ -1270,7 +1270,7 @@ Rerun configure task after fixing this.""" | |||
1270 | options = set() | 1270 | options = set() |
1271 | for line in output.splitlines(): | 1271 | for line in output.splitlines(): |
1272 | options |= set(line.partition(flag)[2].split()) | 1272 | options |= set(line.partition(flag)[2].split()) |
1273 | whitelist = set(d.getVar("UNKNOWN_CONFIGURE_WHITELIST").split()) | 1273 | whitelist = set(d.getVar("UNKNOWN_CONFIGURE_OPT_IGNORE").split()) |
1274 | options -= whitelist | 1274 | options -= whitelist |
1275 | if options: | 1275 | if options: |
1276 | pn = d.getVar('PN') | 1276 | pn = d.getVar('PN') |