From patchwork Sun Nov 20 21:32:53 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: package.bbclass: fix path for relative links on elf files, when moved to debugdir Date: Sun, 20 Nov 2011 21:32:53 -0000 From: Henning Heinold X-Patchwork-Id: 15177 Message-Id: <1321824774-23819-1-git-send-email-heinold@inf.fu-berlin.de> To: openembedded-core@lists.openembedded.org * relative links for elf files like ../foo.so ends up in the debugdir with ../.debug/foo.so, this causes infinite fileaccessloops fix it by adding an extra "../" to the link path Signed-off-by: Henning Heinold --- meta/classes/package.bbclass | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 6775fda..c351f26 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -778,6 +778,8 @@ python split_and_strip_files () { if lpath and lpath != ".": ftarget += lpath + debugdir + "/" ftarget += lbase + debugappend + if lpath.startswith(".."): + ftarget = os.path.join("..", ftarget) bb.mkdirhier(os.path.dirname(fpath)) #bb.note("Symlink %s -> %s" % (fpath, ftarget)) os.symlink(ftarget, fpath)