summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-24 13:56:52 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-11-24 22:11:44 +0000
commit8b0a893e75c9d54c2cd90e10f22e072bd5711422 (patch)
tree9999ed05b2fc3dc789ae70145def8c427e0e58d1 /bitbake
parent61c51bfce9ec68062adf8e525c30bf0e179a7f3c (diff)
downloadast2050-yocto-poky-8b0a893e75c9d54c2cd90e10f22e072bd5711422.zip
ast2050-yocto-poky-8b0a893e75c9d54c2cd90e10f22e072bd5711422.tar.gz
fetch2/local: Don't default to files in DL_DIR for file:// urls
Defaulting to any file in DL_DIR as the first match for a file:// url doesn't make much sense and can lead to unexpected results. This patch changes the logic so this is the last fallback location instead. Whether it should be using DL_DIR at all for this is a good question but something for another patch. [YOCTO #1710] (Bitbake rev: 5597a68fac0954c682b67471722c2643e2415f99) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/fetch2/local.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/bitbake/lib/bb/fetch2/local.py b/bitbake/lib/bb/fetch2/local.py
index 2bf92c9..a0ed444 100644
--- a/bitbake/lib/bb/fetch2/local.py
+++ b/bitbake/lib/bb/fetch2/local.py
@@ -50,9 +50,6 @@ class Local(FetchMethod):
path = url.split("://")[1]
path = path.split(";")[0]
newpath = path
- dldirfile = os.path.join(data.getVar("DL_DIR", d, True), os.path.basename(path))
- if os.path.exists(dldirfile):
- return dldirfile
if path[0] != "/":
filespath = data.getVar('FILESPATH', d, True)
if filespath:
@@ -62,6 +59,7 @@ class Local(FetchMethod):
if filesdir:
newpath = os.path.join(filesdir, path)
if not os.path.exists(newpath) and path.find("*") == -1:
+ dldirfile = os.path.join(data.getVar("DL_DIR", d, True), os.path.basename(path))
return dldirfile
return newpath
OpenPOWER on IntegriCloud