mirror of
git://git.yoctoproject.org/poky
synced 2026-08-13 23:32:48 +00:00
package.bbclass: Ensure debug source file is generated correctly
The command for generating debug sources appends to the file, therefore we need to ensure it does not exist before we run the command else we end up doing more work that we should have to. (From OE-Core rev: 48dfd61901ce07491ef913cf04dbd9de9a52759f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
88fa952b7c
commit
c376f1f49c
@ -242,6 +242,8 @@ def splitdebuginfo(file, debugfile, debugsrcdir, d):
|
||||
workparentdir = d.getVar("DEBUGSRC_OVERRIDE_PATH", True) or os.path.dirname(os.path.dirname(workdir))
|
||||
sourcefile = d.expand("${WORKDIR}/debugsources.list")
|
||||
|
||||
bb.utils.remove(sourcefile)
|
||||
|
||||
# We ignore kernel modules, we don't generate debug info files.
|
||||
if file.find("/lib/modules/") != -1 and file.endswith(".ko"):
|
||||
return 1
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user