From c508b26867741b83b3b73fc88de1ad97acc39c18 Mon Sep 17 00:00:00 2001 From: Benjamin Gilbert Date: Wed, 8 Jan 2025 14:04:58 -0800 Subject: [PATCH] Copyedit an error message Fixes: 47acce8ec9 ("Provide a better error message when mixing host and build machines") --- mesonbuild/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/build.py b/mesonbuild/build.py index ca4e5d5a7fa0..ed777ff25432 100644 --- a/mesonbuild/build.py +++ b/mesonbuild/build.py @@ -1500,7 +1500,7 @@ def check_can_link_together(self, t: BuildTargetTypes) -> None: if not self.uses_rust() and links_with_rust_abi: raise InvalidArguments(f'Try to link Rust ABI library {t.name!r} with a non-Rust target {self.name!r}') if self.for_machine is not t.for_machine and (not links_with_rust_abi or t.rust_crate_type != 'proc-macro'): - msg = f'Tried to tied to mix a {t.for_machine} library ("{t.name}") with a {self.for_machine} target "{self.name}"' + msg = f'Tried to mix a {t.for_machine} library ("{t.name}") with a {self.for_machine} target "{self.name}"' if self.environment.is_cross_build(): raise InvalidArguments(msg + ' This is not possible in a cross build.') else: