diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-10 23:00:37 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-05-11 17:16:11 +0100 |
commit | c0267bb7327a4289025fd43b42bc8ad58d0e76db (patch) | |
tree | 59a6e3f714086c2374d6b79a0df605fefd1f9eba /meta/classes/sanity.bbclass | |
parent | d4739e930fd66d047fe4ae6fe127364b918ccab6 (diff) | |
download | poky-c0267bb7327a4289025fd43b42bc8ad58d0e76db.tar.gz |
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.
(From OE-Core rev: b561e40f906737eec81245c6a12e78501311f667)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/sanity.bbclass')
-rw-r--r-- | meta/classes/sanity.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index c72a7b3ed3..b416918013 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -470,7 +470,7 @@ def check_make_version(sanity_data): | |||
470 | 470 | ||
471 | if bb.utils.vercmp_string_op(version, "4.2.1", "=="): | 471 | if bb.utils.vercmp_string_op(version, "4.2.1", "=="): |
472 | distro = oe.lsb.distro_identifier() | 472 | distro = oe.lsb.distro_identifier() |
473 | if "ubuntu" in distro or "debian" in distro: | 473 | if "ubuntu" in distro or "debian" in distro or "linuxmint" in distro: |
474 | return None | 474 | return None |
475 | 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" | 475 | 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" |
476 | return None | 476 | return None |