Skip to content

Commit

Permalink
fix(explain_manifest): fix behaviour change or API after version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
fffonion committed Sep 29, 2024
1 parent 695e8ec commit c77f917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/explain_manifest/explain.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def __init__(self, path, relpath):
if d.tag == lief._lief.ELF.DynamicEntry.TAG.NEEDED:
self.needed_libraries.append(d.name)
elif d.tag == lief._lief.ELF.DynamicEntry.TAG.RPATH:
self.rpath = d.runpath
self.rpath = d.rpath
elif d.tag == lief._lief.ELF.DynamicEntry.TAG.RUNPATH:
self.runpath = d.runpath

Expand Down

0 comments on commit c77f917

Please sign in to comment.