summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/fetch2/local.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/bitbake/lib/bb/fetch2/local.py b/bitbake/lib/bb/fetch2/local.py
index 1f4ec37..bfef079 100644
--- a/bitbake/lib/bb/fetch2/local.py
+++ b/bitbake/lib/bb/fetch2/local.py
@@ -60,9 +60,10 @@ class Local(FetchMethod):
filesdir = data.getVar('FILESDIR', d, True)
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
+ if not os.path.exists(newpath) and path.find("*") == -1:
+ dldirfile = os.path.join(d.getVar("DL_DIR", True), path)
+ bb.utils.mkdirhier(os.path.dirname(dldirfile))
+ return dldirfile
return newpath
def need_update(self, url, ud, d):
OpenPOWER on IntegriCloud