diff options
-rw-r--r-- | bitbake/lib/bb/fetch2/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py index de95074c40..dc6c821011 100644 --- a/bitbake/lib/bb/fetch2/__init__.py +++ b/bitbake/lib/bb/fetch2/__init__.py | |||
@@ -808,7 +808,7 @@ def try_mirror_url(origud, ud, ld, check = False): | |||
808 | os.symlink(ud.localpath, dest) | 808 | os.symlink(ud.localpath, dest) |
809 | if not os.path.exists(origud.donestamp) or origud.method.need_update(origud, ld): | 809 | if not os.path.exists(origud.donestamp) or origud.method.need_update(origud, ld): |
810 | origud.method.download(origud, ld) | 810 | origud.method.download(origud, ld) |
811 | if hasattr(ud.method,"build_mirror_data"): | 811 | if hasattr(origud.method,"build_mirror_data"): |
812 | origud.method.build_mirror_data(origud, ld) | 812 | origud.method.build_mirror_data(origud, ld) |
813 | return ud.localpath | 813 | return ud.localpath |
814 | # Otherwise the result is a local file:// and we symlink to it | 814 | # Otherwise the result is a local file:// and we symlink to it |