summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/fetch/local.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch/local.py b/bitbake/lib/bb/fetch/local.py
index f9f8994f0e..3553f37a7a 100644
--- a/bitbake/lib/bb/fetch/local.py
+++ b/bitbake/lib/bb/fetch/local.py
@@ -51,7 +51,7 @@ class Local(Fetch):
51 newpath = bb.utils.which(filespath, path) 51 newpath = bb.utils.which(filespath, path)
52 if not newpath: 52 if not newpath:
53 dlpath = os.path.join(data.getVar('DL_DIR', d, True), path) 53 dlpath = os.path.join(data.getVar('DL_DIR', d, True), path)
54 if os.path.exists(dlpath): 54 if os.exists(dlpath):
55 newpath = dlpath 55 newpath = dlpath
56 if not newpath: 56 if not newpath:
57 filesdir = data.getVar('FILESDIR', d, 1) 57 filesdir = data.getVar('FILESDIR', d, 1)