mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
bitbake: fetch2/local.py: fix first line indent of search path debug output
Make OE do_unpack logs slightly prettier. (Bitbake rev: cec5859dec56529d76a0a685cc67b8da29453c69) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
f1dc26ebf4
commit
02455ebfbb
@@ -56,7 +56,7 @@ class Local(FetchMethod):
|
|||||||
if path[0] != "/":
|
if path[0] != "/":
|
||||||
filespath = data.getVar('FILESPATH', d, True)
|
filespath = data.getVar('FILESPATH', d, True)
|
||||||
if filespath:
|
if filespath:
|
||||||
logger.debug(2, "Searching for %s in paths: \n%s" % (path, "\n ".join(filespath.split(":"))))
|
logger.debug(2, "Searching for %s in paths:\n %s" % (path, "\n ".join(filespath.split(":"))))
|
||||||
newpath = bb.utils.which(filespath, path)
|
newpath = bb.utils.which(filespath, path)
|
||||||
if not newpath:
|
if not newpath:
|
||||||
filesdir = data.getVar('FILESDIR', d, True)
|
filesdir = data.getVar('FILESDIR', d, True)
|
||||||
|
|||||||
Reference in New Issue
Block a user