From b1fe4aab8b8b8a98ab8ba4788a34a90446d6222b Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 27 Jan 2020 11:42:32 +0000 Subject: distrodata/maintainers: Add PARSE_ALL_RECIPES flag to fix test issues Currently the test depends on which DISTRO_FEATURES and targets are selected. Similar to SOURCE_MIRROR_FETCH, add PARSE_ALL_RECIPES to allow the test to see a much wider range of them. This avoids issues added by the new ucontext musl specific recipe and allows the current whitelist to be cleared out a bit (more cleanup can follow). (From OE-Core rev: c139e058bb2df48c79784cf3fd701e51bbc68427) Signed-off-by: Richard Purdie --- meta/classes/features_check.bbclass | 3 +++ 1 file changed, 3 insertions(+) (limited to 'meta/classes/features_check.bbclass') diff --git a/meta/classes/features_check.bbclass b/meta/classes/features_check.bbclass index 391fbe1c94..876d32e315 100644 --- a/meta/classes/features_check.bbclass +++ b/meta/classes/features_check.bbclass @@ -23,6 +23,9 @@ # Copyright 2013 (C) O.S. Systems Software LTDA. python () { + if d.getVar('PARSE_ALL_RECIPES', False): + return + # Assume at least one var is set. distro_features = set((d.getVar('DISTRO_FEATURES') or '').split()) -- cgit v1.2.3-54-g00ecf