From b5a9021708d87d17538e0e27fe4ad6a5e20fa9a9 Mon Sep 17 00:00:00 2001 From: Luc Ma Date: Fri, 14 Apr 2023 18:53:57 +0800 Subject: meson: keep Mako version checking in accord with build msg Fixes: 52194ae4df1 ("meson: Ensure that mako is >= 0.8.0") Signed-off-by: Luc Ma Reported-by: Terry Zhang Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index a3e3c5478a8..c7a4be82e59 100644 --- a/meson.build +++ b/meson.build @@ -848,7 +848,7 @@ has_mako = run_command( ''' from distutils.version import StrictVersion import mako -assert StrictVersion(mako.__version__) > StrictVersion("0.8.0") +assert StrictVersion(mako.__version__) >= StrictVersion("0.8.0") ''', check: false) if has_mako.returncode() != 0 error('Python (3.x) mako module >= 0.8.0 required to build mesa.') -- cgit v1.2.3