diff options
author | Felix Schwarz <felix.schwarz@oss.schwarz.eu> | 2021-08-06 14:13:58 +0200 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2021-08-06 09:20:23 -0400 |
commit | 53ce1610a63cde9befe3da44bfa07d43468ef1bf (patch) | |
tree | 1ad060554fc49861e0345bf01c28155dc9914074 /mesonbuild | |
parent | 5381ec89afdbf61e575cb0ac5c25e339279a5af2 (diff) | |
download | meson-53ce1610a63cde9befe3da44bfa07d43468ef1bf.zip meson-53ce1610a63cde9befe3da44bfa07d43468ef1bf.tar.gz meson-53ce1610a63cde9befe3da44bfa07d43468ef1bf.tar.bz2 |
fix spelling error in user output ("depencency" -> "dependency")
Diffstat (limited to 'mesonbuild')
-rw-r--r-- | mesonbuild/interpreter/interpreter.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/interpreter/interpreter.py b/mesonbuild/interpreter/interpreter.py index 32e0aea..72c0493 100644 --- a/mesonbuild/interpreter/interpreter.py +++ b/mesonbuild/interpreter/interpreter.py @@ -2205,10 +2205,10 @@ This will become a hard error in the future.''' % kwargs['input'], location=self it should set a variable that the caller can then use. Something like: # In subproject - some_dep = declare_depencency(include_directories: include_directories('include')) + some_dep = declare_dependency(include_directories: include_directories('include')) # In parent project - some_dep = depencency('some') + some_dep = dependency('some') executable(..., dependencies: [some_dep]) This warning will become a hard error in a future Meson release. |