aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/backend/backends.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/backends.py b/mesonbuild/backend/backends.py
index 354d25a..0e2389d 100644
--- a/mesonbuild/backend/backends.py
+++ b/mesonbuild/backend/backends.py
@@ -376,7 +376,7 @@ class Backend:
def determine_rpath_dirs(self, target):
link_deps = target.get_all_link_deps()
- result = set()
+ result = OrderedSet()
for ld in link_deps:
if ld is target:
continue