aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/linkers.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2021-05-29 14:24:53 -0700
committerGitHub <noreply@github.com>2021-05-30 00:24:53 +0300
commitc6ec13e6bfe5292181370e47b813212eb193a0fb (patch)
treeb83d8ce869bc31be4b51219e530443ff79a93a81 /mesonbuild/linkers.py
parent25fa2d4f7ba0978d8a224cf2cba3d697a3bbfb3d (diff)
downloadmeson-c6ec13e6bfe5292181370e47b813212eb193a0fb.zip
meson-c6ec13e6bfe5292181370e47b813212eb193a0fb.tar.gz
meson-c6ec13e6bfe5292181370e47b813212eb193a0fb.tar.bz2
Only try to get RSP syntax if RSP is supported (#8804)
Diffstat (limited to 'mesonbuild/linkers.py')
-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: