From 778fe086a1f46f44987dc17c984c3c0581996cbb Mon Sep 17 00:00:00 2001 From: Wangchong Zhou Date: Sun, 29 Sep 2024 17:58:09 +0800 Subject: [PATCH] fix(explain_manifest): fix behavior change or API after version bump (#13721) Regression from https://github.com/Kong/kong/pull/13639 --- 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