diff options
Diffstat (limited to 'src/debputy/plugin/debputy/metadata_detectors.py')
-rw-r--r-- | src/debputy/plugin/debputy/metadata_detectors.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/debputy/plugin/debputy/metadata_detectors.py b/src/debputy/plugin/debputy/metadata_detectors.py index 4338087..e325500 100644 --- a/src/debputy/plugin/debputy/metadata_detectors.py +++ b/src/debputy/plugin/debputy/metadata_detectors.py @@ -520,8 +520,8 @@ def auto_depends_arch_any_solink( if not roots: return - for libdir, target in targets: - final_path = os.path.join(libdir, target) + for libdir_path, target in targets: + final_path = os.path.join(libdir_path, target) matches = [] for opkg, ofs_root in roots: m = ofs_root.lookup(final_path) |