From 7a1e8eecaf3ddcbdfe18c8c05ae0c02f0464f751 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Sat, 12 Feb 2022 22:58:42 -0500 Subject: [PATCH] formatting improvement for include_directories sandbox violation warning Print the location the warning was encountered, and quote the string that triggered it. This makes it easier to read what actually happened. --- mesonbuild/interpreter/interpreter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mesonbuild/interpreter/interpreter.py b/mesonbuild/interpreter/interpreter.py index 12abdf0c2..0987309db 100644 --- a/mesonbuild/interpreter/interpreter.py +++ b/mesonbuild/interpreter/interpreter.py @@ -2462,9 +2462,9 @@ external dependencies (including libraries) must go to "dependencies".''') try: self.validate_within_subproject(self.subdir, a) except InterpreterException: - mlog.warning('include_directories sandbox violation!') + mlog.warning('include_directories sandbox violation!', location=self.current_node) print(textwrap.dedent(f'''\ - The project is trying to access the directory {a} which belongs to a different + The project is trying to access the directory {a!r} which belongs to a different subproject. This is a problem as it hardcodes the relative paths of these two projects. This makes it impossible to compile the project in any other directory layout and also prevents the subproject from changing its own directory layout.