aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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()