diff options
author | Yasushi SHOJI <yashi@spacecubics.com> | 2021-11-15 05:01:21 +0900 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2021-11-14 15:16:54 -0500 |
commit | dbd1e154ab7d1df39740dbe1f4460d4f63bac9b2 (patch) | |
tree | 27b6bb35f4ce199515783e297c568a55ef73da53 /mesonbuild/interpreter/interpreter.py | |
parent | 364d951b347ab932d9a78cb6846d1288925cf32c (diff) | |
download | meson-dbd1e154ab7d1df39740dbe1f4460d4f63bac9b2.zip meson-dbd1e154ab7d1df39740dbe1f4460d4f63bac9b2.tar.gz meson-dbd1e154ab7d1df39740dbe1f4460d4f63bac9b2.tar.bz2 |
interpreter: Fix a typo
This is a trivial typo. Fix projeccts to projects.
Signed-off-by: Yasushi SHOJI <yashi@spacecubics.com>
Diffstat (limited to 'mesonbuild/interpreter/interpreter.py')
-rw-r--r-- | mesonbuild/interpreter/interpreter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/interpreter/interpreter.py b/mesonbuild/interpreter/interpreter.py index 211bdb5..3953ae1 100644 --- a/mesonbuild/interpreter/interpreter.py +++ b/mesonbuild/interpreter/interpreter.py @@ -2316,7 +2316,7 @@ This will become a hard error in the future.''', location=self.current_node) mlog.warning('include_directories sandbox violation!') print(textwrap.dedent(f'''\ The project is trying to access the directory {a} which belongs to a different - subproject. This is a problem as it hardcodes the relative paths of these two projeccts. + 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. |