depfixer: split new rpath into multiple entries for dedup comparisons

Fixes: #8115

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
pull/4393/merge
Alan Coopersmith 4 years ago committed by Jussi Pakkanen
parent fdfc239cda
commit d6ef5b2024
  1. 2
      mesonbuild/scripts/depfixer.py

@ -313,7 +313,7 @@ class Elf(DataSizes):
# Only add each one once.
new_rpaths = OrderedSet() # type: OrderedSet[bytes]
if new_rpath:
new_rpaths.add(new_rpath)
new_rpaths.update(new_rpath.split(b':'))
if old_rpath:
# Filter out build-only rpath entries
# added by get_link_dep_subdirs() or

Loading…
Cancel
Save