aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2021-05-26 09:38:38 -0700
committerNirbheek Chauhan <nirbheek@centricular.com>2021-06-07 20:05:11 +0530
commit9ecbe3ff1ec50be17f2b9eee32ba757dba1d8544 (patch)
treeae563236547db870c624a8b54961f7b2515bd78b
parent1346725ec987f0dc40d94259942c49bc90a35ac6 (diff)
downloadmeson-9ecbe3ff1ec50be17f2b9eee32ba757dba1d8544.zip
meson-9ecbe3ff1ec50be17f2b9eee32ba757dba1d8544.tar.gz
meson-9ecbe3ff1ec50be17f2b9eee32ba757dba1d8544.tar.bz2
linkers: fix type in error message
-rw-r--r--mesonbuild/linkers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/linkers.py b/mesonbuild/linkers.py
index acb2c44..7b938ac 100644
--- a/mesonbuild/linkers.py
+++ b/mesonbuild/linkers.py
@@ -112,7 +112,7 @@ class StaticLinker:
be implemented
"""
assert not self.can_linker_accept_rsp(), f'{self.id} linker accepts RSP, but doesn\' provide a supported format, this is a bug'
- raise mesonlib.EnvironmentException(f'{self.id} does no implemnt rsp format, this shouldn\'t be called')
+ raise mesonlib.EnvironmentException(f'{self.id} does not implemnt rsp format, this shouldn\'t be called')
class VisualStudioLikeLinker: