summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/fetch/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py
index f52b0acfc7..ef33e6da41 100644
--- a/bitbake/lib/bb/fetch/__init__.py
+++ b/bitbake/lib/bb/fetch/__init__.py
@@ -232,7 +232,7 @@ def go(d, urls = None):
232 ud = urldata[u] 232 ud = urldata[u]
233 m = ud.method 233 m = ud.method
234 if ud.localfile: 234 if ud.localfile:
235 if not m.forcefetch(u, ud, d) and os.path.exists(ud.md5): 235 if not m.forcefetch(u, ud, d) and os.path.exists(ud.md5) and os.path.exists(ud.localfile):
236 # File already present along with md5 stamp file 236 # File already present along with md5 stamp file
237 # Touch md5 file to show activity 237 # Touch md5 file to show activity
238 try: 238 try:
@@ -242,7 +242,7 @@ def go(d, urls = None):
242 pass 242 pass
243 continue 243 continue
244 lf = bb.utils.lockfile(ud.lockfile) 244 lf = bb.utils.lockfile(ud.lockfile)
245 if not m.forcefetch(u, ud, d) and os.path.exists(ud.md5): 245 if not m.forcefetch(u, ud, d) and os.path.exists(ud.md5) and os.path.exists(ud.localfile):
246 # If someone else fetched this before we got the lock, 246 # If someone else fetched this before we got the lock,
247 # notice and don't try again 247 # notice and don't try again
248 try: 248 try: