aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2024-07-23 14:12:35 -0700
committerDylan Baker <dylan@pnwbakers.com>2024-07-23 14:12:35 -0700
commitf76f9ddf28f16704b9d91066f6cc151fc78329e1 (patch)
treeb9a377a2c459260e0f1184bde53969d27d0a93db
parent93f5ceb9eebfee229c15b31b935d8df6ad642a0b (diff)
downloadmeson-f76f9ddf28f16704b9d91066f6cc151fc78329e1.zip
meson-f76f9ddf28f16704b9d91066f6cc151fc78329e1.tar.gz
meson-f76f9ddf28f16704b9d91066f6cc151fc78329e1.tar.bz2
depfixer: Add missing annotation that breaks mypy check
-rw-r--r--mesonbuild/scripts/depfixer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/scripts/depfixer.py b/mesonbuild/scripts/depfixer.py
index 641689f..db9c97d 100644
--- a/mesonbuild/scripts/depfixer.py
+++ b/mesonbuild/scripts/depfixer.py
@@ -386,7 +386,7 @@ def get_darwin_rpaths(fname: str) -> OrderedSet[str]:
# Need to deduplicate rpaths, as macOS's install_name_tool
# is *very* allergic to duplicate -delete_rpath arguments
# when calling depfixer on installation.
- result = OrderedSet()
+ result: OrderedSet[str] = OrderedSet()
current_cmd = 'FOOBAR'
for line in out.split('\n'):
line = line.strip()