From cd6a17064547ee699d110981a8cf70eeb6129d77 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 17 Nov 2025 09:59:19 +0100 Subject: Don't build Grok on Ubuntu 25.10. It fails because the code needs to work with boost::process v2. --- cscript | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cscript b/cscript index 8d0718f96..acc3bf155 100644 --- a/cscript +++ b/cscript @@ -575,7 +575,13 @@ def configure_options(target, options, for_package=False): (target.distro == 'ubuntu' and ubuntu_year >= 24) or (target.distro == 'fedora' and int(target.version) >= 42) ): - opt += ' --enable-grok --workaround-mutter' + opt += ' --workaround-mutter' + + if target.platform == 'linux' and ( + (target.distro == 'ubuntu' and target.version == "24.04") or + (target.distro == 'fedora' and target.version == "42") + ): + opt += ' --enable-grok' if build_with_cpp17(target): opt += ' --c++17' -- cgit v1.2.3