mirror of
https://git.yoctoproject.org/poky
synced 2026-04-20 00:32:13 +02:00
Revert "bitbake/fetch/local: Also check DL_DIR for files since they could already exists there"
These changes were incorrect.
This reverts commit ae98f7eacb.
This commit is contained in:
@@ -49,10 +49,6 @@ class Local(Fetch):
|
||||
filespath = data.getVar('FILESPATH', d, 1)
|
||||
if filespath:
|
||||
newpath = bb.utils.which(filespath, path)
|
||||
if not newpath:
|
||||
dlpath = os.path.join(data.getVar('DL_DIR', d, True), path)
|
||||
if os.exists(dlpath):
|
||||
newpath = dlpath
|
||||
if not newpath:
|
||||
filesdir = data.getVar('FILESDIR', d, 1)
|
||||
if filesdir:
|
||||
|
||||
Reference in New Issue
Block a user