summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/fetch2/__init__.py')
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index a40a88b3ee..31d9f01c21 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -876,7 +876,9 @@ def build_mirroruris(origud, mirrors, ld):
876 logger.debug(1, "Mirror fetch failure for url %s (original url: %s)" % (newuri, origud.url)) 876 logger.debug(1, "Mirror fetch failure for url %s (original url: %s)" % (newuri, origud.url))
877 logger.debug(1, str(e)) 877 logger.debug(1, str(e))
878 try: 878 try:
879 ud.method.clean(ud, ld) 879 # setup_localpath of file:// urls may fail, we should still see
880 # if mirrors of the url exist
881 adduri(newud, uris, uds)
880 except UnboundLocalError: 882 except UnboundLocalError:
881 pass 883 pass
882 continue 884 continue