aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/linkers.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-02-18 11:34:19 -0800
committerDylan Baker <dylan@pnwbakers.com>2020-02-18 12:18:49 -0800
commita9cd197c7bffe3b265d10859dd463b92f0c04c23 (patch)
treeb011cc874988ba0392f7dc7ba3ed1e3b2a5765d3 /mesonbuild/linkers.py
parent49ae886620c5d140efbbe177ff0565ba100309f2 (diff)
downloadmeson-a9cd197c7bffe3b265d10859dd463b92f0c04c23.zip
meson-a9cd197c7bffe3b265d10859dd463b92f0c04c23.tar.gz
meson-a9cd197c7bffe3b265d10859dd463b92f0c04c23.tar.bz2
linkers: typing -> T fixup
There was a particularly old MR merged, from before the typing -> T standardization in meson.
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 41b445e..310223a 100644
--- a/mesonbuild/linkers.py
+++ b/mesonbuild/linkers.py
@@ -666,7 +666,7 @@ class LLVMDynamicLinker(GnuLikeDynamicLinkerMixin, PosixDynamicLinkerMixin, Dyna
_, _, e = mesonlib.Popen_safe(self.exelist + self._apply_prefix('--allow-shlib-undefined'))
self.has_allow_shlib_undefined = not ('unknown argument: --allow-shlib-undefined' in e)
- def get_allow_undefined_args(self) -> typing.List[str]:
+ def get_allow_undefined_args(self) -> T.List[str]:
if self.has_allow_shlib_undefined:
return self._apply_prefix('--allow-shlib-undefined')
return []