From dc87decd749b9330a7467429c73d8f463eb73333 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Thu, 18 Dec 2025 08:46:17 +0100 Subject: options: canonicalize to host options anything that is not per-machine Signed-off-by: Paolo Bonzini --- mesonbuild/options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild') diff --git a/mesonbuild/options.py b/mesonbuild/options.py index 78f9f7fe5..5832461f0 100644 --- a/mesonbuild/options.py +++ b/mesonbuild/options.py @@ -841,7 +841,7 @@ class OptionStore: # # I did not do this yet, because it would make this MR even # more massive than it already is. Later then. - if not self.is_cross: + if not (self.is_cross and self.is_per_machine_option(key)): key = key.as_host() return key -- cgit v1.2.3