From: Richard Purdie Date: Tue, 10 May 2022 22:00:37 +0000 (+0100) Subject: sanity: Don't warn about make 4.2.1 for mint X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~4148 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b561e40f906737eec81245c6a12e78501311f667;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git sanity: Don't warn about make 4.2.1 for mint Whilst not a supported distro, we can exclude this from the warning as it is debian derived and doesn't have the issue. Signed-off-by: Richard Purdie Signed-off-by: Luca Ceresoli Signed-off-by: Richard Purdie --- diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index c72a7b3ed3b..b416918013c 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -470,7 +470,7 @@ def check_make_version(sanity_data): if bb.utils.vercmp_string_op(version, "4.2.1", "=="): distro = oe.lsb.distro_identifier() - if "ubuntu" in distro or "debian" in distro: + if "ubuntu" in distro or "debian" in distro or "linuxmint" in distro: return None return "make version 4.2.1 is known to have issues on Centos/OpenSUSE and other non-Ubuntu systems. Please use a buildtools-make-tarball or a newer version of make.\n" return None