diff options
| author | Richard Purdie <rpurdie@linux.intel.com> | 2010-11-13 07:26:21 +0800 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-11-13 07:28:55 +0800 |
| commit | ae98f7eacb9e61fe086d88dc694b4c651af9fee3 (patch) | |
| tree | 653eb34c0f293e708247210665bf165a7432391e | |
| parent | 857534f94308def5c014ad200312143f9a0e6e4c (diff) | |
| download | poky-ae98f7eacb9e61fe086d88dc694b4c651af9fee3.tar.gz | |
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>
| -rw-r--r-- | bitbake/lib/bb/fetch/local.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch/local.py b/bitbake/lib/bb/fetch/local.py index 882a2c4602..3553f37a7a 100644 --- a/bitbake/lib/bb/fetch/local.py +++ b/bitbake/lib/bb/fetch/local.py | |||
| @@ -50,6 +50,10 @@ class Local(Fetch): | |||
| 50 | if filespath: | 50 | if filespath: |
| 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) | ||
| 54 | if os.exists(dlpath): | ||
| 55 | newpath = dlpath | ||
| 56 | if not newpath: | ||
| 53 | filesdir = data.getVar('FILESDIR', d, 1) | 57 | filesdir = data.getVar('FILESDIR', d, 1) |
| 54 | if filesdir: | 58 | if filesdir: |
| 55 | newpath = os.path.join(filesdir, path) | 59 | newpath = os.path.join(filesdir, path) |
