From c77f917e6865125d929f244b715b96eb6d42f7e2 Mon Sep 17 00:00:00 2001 From: Wangchong Zhou Date: Sun, 29 Sep 2024 16:50:48 +0800 Subject: [PATCH] fix(explain_manifest): fix behaviour change or API after version bump --- scripts/explain_manifest/explain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/explain_manifest/explain.py b/scripts/explain_manifest/explain.py index b22b2a5f4a33..01ba79d53d78 100644 --- a/scripts/explain_manifest/explain.py +++ b/scripts/explain_manifest/explain.py @@ -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