bitbake/fetch/local: Also check DL_DIR for files since they could already exists there

[BUGID #533]

Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
Richard Purdie 2010-11-13 07:26:21 +08:00
parent 857534f943
commit ae98f7eacb
1 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,10 @@ 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: