diff options
Diffstat (limited to 'meta/classes/insane.bbclass')
-rw-r--r-- | meta/classes/insane.bbclass | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/meta/classes/insane.bbclass b/meta/classes/insane.bbclass index 105d2a5ce8..3597943ddd 100644 --- a/meta/classes/insane.bbclass +++ b/meta/classes/insane.bbclass | |||
@@ -27,7 +27,7 @@ WARN_QA ?= " libdir xorg-driver-abi \ | |||
27 | infodir build-deps src-uri-bad symlink-to-sysroot multilib \ | 27 | infodir build-deps src-uri-bad symlink-to-sysroot multilib \ |
28 | invalid-packageconfig host-user-contaminated uppercase-pn patch-fuzz \ | 28 | invalid-packageconfig host-user-contaminated uppercase-pn patch-fuzz \ |
29 | mime mime-xdg unlisted-pkg-lics unhandled-features-check \ | 29 | mime mime-xdg unlisted-pkg-lics unhandled-features-check \ |
30 | missing-update-alternatives \ | 30 | missing-update-alternatives native-last \ |
31 | " | 31 | " |
32 | ERROR_QA ?= "dev-so debug-deps dev-deps debug-files arch pkgconfig la \ | 32 | ERROR_QA ?= "dev-so debug-deps dev-deps debug-files arch pkgconfig la \ |
33 | perms dep-cmp pkgvarcheck perm-config perm-line perm-link \ | 33 | perms dep-cmp pkgvarcheck perm-config perm-line perm-link \ |
@@ -1366,6 +1366,32 @@ python () { | |||
1366 | d.setVarFlag('do_package_qa', 'rdeptask', '') | 1366 | d.setVarFlag('do_package_qa', 'rdeptask', '') |
1367 | for i in issues: | 1367 | for i in issues: |
1368 | package_qa_handle_error("pkgvarcheck", "%s: Variable %s is set as not being package specific, please fix this." % (d.getVar("FILE"), i), d) | 1368 | package_qa_handle_error("pkgvarcheck", "%s: Variable %s is set as not being package specific, please fix this." % (d.getVar("FILE"), i), d) |
1369 | |||
1370 | for native_class in ['native', 'nativesdk']: | ||
1371 | if bb.data.inherits_class(native_class, d): | ||
1372 | |||
1373 | inherited_classes = d.getVar('__inherit_cache', False) or [] | ||
1374 | needle = os.path.join('classes', native_class) | ||
1375 | |||
1376 | bbclassextend = (d.getVar('BBCLASSEXTEND') or '').split() | ||
1377 | # BBCLASSEXTEND items are always added in the end | ||
1378 | skip_classes = bbclassextend | ||
1379 | if bb.data.inherits_class('native', d) or 'native' in bbclassextend: | ||
1380 | # native also inherits nopackages and relocatable bbclasses | ||
1381 | skip_classes.extend(['nopackages', 'relocatable']) | ||
1382 | |||
1383 | for class_item in reversed(inherited_classes): | ||
1384 | if needle not in class_item: | ||
1385 | for extend_item in skip_classes: | ||
1386 | if os.path.join('classes', '%s.bbclass' % extend_item) in class_item: | ||
1387 | break | ||
1388 | else: | ||
1389 | pn = d.getVar('PN') | ||
1390 | package_qa_handle_error("native-last", "%s: native/nativesdk class is not inherited last, this can result in unexpected behaviour. " % pn, d) | ||
1391 | break | ||
1392 | else: | ||
1393 | break | ||
1394 | |||
1369 | qa_sane = d.getVar("QA_SANE") | 1395 | qa_sane = d.getVar("QA_SANE") |
1370 | if not qa_sane: | 1396 | if not qa_sane: |
1371 | bb.fatal("Fatal QA errors found, failing task.") | 1397 | bb.fatal("Fatal QA errors found, failing task.") |