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:
Richard Purdie 2010-11-13 20:03:13 +08:00
parent aa81dda4d4
commit 7333328c48
1 changed files with 0 additions and 4 deletions

View File

@ -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: