summaryrefslogtreecommitdiffstats
path: root/meta/classes/insane.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/insane.bbclass')
-rw-r--r--meta/classes/insane.bbclass4
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
49ALL_QA = "${WARN_QA} ${ERROR_QA}" 49ALL_QA = "${WARN_QA} ${ERROR_QA}"
50 50
51UNKNOWN_CONFIGURE_WHITELIST ?= "--enable-nls --disable-nls --disable-silent-rules --disable-dependency-tracking --with-libtool-sysroot --disable-static" 51UNKNOWN_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.
54QA_EMPTY_DIRS ?= " \ 54QA_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')