]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
bitbake: fetch2/local: Add search paths to the debug log to improve log usefullness
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 2 Aug 2012 20:48:31 +0000 (20:48 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 2 Aug 2012 22:04:27 +0000 (23:04 +0100)
(Bitbake rev: 2054c7d99933c1523d4b5c7f65d37c69b8472e47)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bitbake/lib/bb/fetch2/local.py

index 3a34f2ad7f8f0e051e43d52bde6107abe8e1b6fa..690532d63a5b04b0ee2ea26eb968fdd6e6d0d073 100644 (file)
@@ -55,13 +55,16 @@ class Local(FetchMethod):
         if path[0] != "/":
             filespath = data.getVar('FILESPATH', d, True)
             if filespath:
+                logger.debug(2, "Searching for %s in paths:    \n%s" % (path, "\n    ".join(filespath.split(":"))))
                 newpath = bb.utils.which(filespath, path)
             if not newpath:
                 filesdir = data.getVar('FILESDIR', d, True)
                 if filesdir:
+                    logger.debug(2, "Searching for %s in path: %s" % (path, filesdir))
                     newpath = os.path.join(filesdir, path)
             if not os.path.exists(newpath) and path.find("*") == -1:
                 dldirfile = os.path.join(d.getVar("DL_DIR", True), path)
+                logger.debug(2, "Defaulting to %s for %s" % (dldirfile, path))
                 bb.utils.mkdirhier(os.path.dirname(dldirfile))
                 return dldirfile
         return newpath