diff options
author | Andre McCurdy <armccurdy@gmail.com> | 2014-08-12 16:41:48 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-08-19 20:41:26 +0100 |
commit | 02455ebfbb1e738e6b1fe57cb6a9b9012829ee31 (patch) | |
tree | 3826bfa9cc79881ea8704e69b02ed715b457a666 /bitbake/lib/bb/fetch2 | |
parent | f1dc26ebf4a622cd07b34f9b1bba745bf65b8232 (diff) | |
download | poky-02455ebfbb1e738e6b1fe57cb6a9b9012829ee31.tar.gz |
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>
Diffstat (limited to 'bitbake/lib/bb/fetch2')
-rw-r--r-- | bitbake/lib/bb/fetch2/local.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/local.py b/bitbake/lib/bb/fetch2/local.py index 5c4e42a942..6fa188fc48 100644 --- a/bitbake/lib/bb/fetch2/local.py +++ b/bitbake/lib/bb/fetch2/local.py | |||
@@ -56,7 +56,7 @@ class Local(FetchMethod): | |||
56 | if path[0] != "/": | 56 | if path[0] != "/": |
57 | filespath = data.getVar('FILESPATH', d, True) | 57 | filespath = data.getVar('FILESPATH', d, True) |
58 | if filespath: | 58 | if filespath: |
59 | logger.debug(2, "Searching for %s in paths: \n%s" % (path, "\n ".join(filespath.split(":")))) | 59 | logger.debug(2, "Searching for %s in paths:\n %s" % (path, "\n ".join(filespath.split(":")))) |
60 | newpath = bb.utils.which(filespath, path) | 60 | newpath = bb.utils.which(filespath, path) |
61 | if not newpath: | 61 | if not newpath: |
62 | filesdir = data.getVar('FILESDIR', d, True) | 62 | filesdir = data.getVar('FILESDIR', d, True) |