From 7c320e60f1afcb9c0ea7ec68e29842266c775a43 Mon Sep 17 00:00:00 2001 From: Daniel Mensinger Date: Mon, 18 Jul 2022 17:06:45 +0200 Subject: cmake: Change assertion into a more useful error (fixes #9925) --- mesonbuild/envconfig.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mesonbuild/envconfig.py') diff --git a/mesonbuild/envconfig.py b/mesonbuild/envconfig.py index 820bc99..0e47c05 100644 --- a/mesonbuild/envconfig.py +++ b/mesonbuild/envconfig.py @@ -439,7 +439,8 @@ class CMakeVariables: for key, value in variables.items(): value = mesonlib.listify(value) for i in value: - assert isinstance(i, str) + if not isinstance(i, str): + raise EnvironmentException(f"Value '{i}' of CMake variable '{key}' defined in a machine file is a {type(i).__name__} and not a str") self.variables[key] = value def get_variables(self) -> T.Dict[str, T.List[str]]: -- cgit v1.1