diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2021-07-03 14:51:34 +0000 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2021-07-03 15:01:10 +0000 |
commit | 630bf2be8f2e0f9c8261a2fcd925493734e8f33c (patch) | |
tree | 32fb6304ca7b0409ff4df3e2544702cd1b67746f | |
parent | 41146f3efc46ba1355fc1f70b6a3667e621033ef (diff) |
Mk/Uses/meson.mk: Require meson with b_colorout fix
There have been multiple bug reports where people get compiler
errors with regards to -Xclang -fno-color-diagnostics. This is
caused by partial upgrades and outdated meson packages. For a
better UX, change BUILD_DEPENDS to require a package version that
fixes it.
Fixes: ff2796d5bc837b0c6cb26791439c64f96fe1c090
-rw-r--r-- | Mk/Uses/meson.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/Uses/meson.mk b/Mk/Uses/meson.mk index c089b76a0640..c87ccdeafa4d 100644 --- a/Mk/Uses/meson.mk +++ b/Mk/Uses/meson.mk @@ -24,7 +24,7 @@ _INCLUDE_USES_MESON_MK= yes IGNORE= Incorrect 'USES+= meson:${meson_ARGS}'. meson takes no arguments .endif -BUILD_DEPENDS+= meson:devel/meson +BUILD_DEPENDS+= meson>=0.57.1_1:devel/meson # meson uses ninja .include "${USESDIR}/ninja.mk" |