summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/fetch2/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/__init__.py b/bitbake/lib/bb/fetch2/__init__.py
index 914fa5c024..47a4943369 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -466,7 +466,7 @@ def uri_replace(ud, uri_find, uri_replace, replacements, d, mirrortarball=None):
466 # Kill parameters, they make no sense for mirror tarballs 466 # Kill parameters, they make no sense for mirror tarballs
467 uri_decoded[5] = {} 467 uri_decoded[5] = {}
468 elif ud.localpath and ud.method.supports_checksum(ud): 468 elif ud.localpath and ud.method.supports_checksum(ud):
469 basename = os.path.basename(ud.localpath) 469 basename = os.path.basename(uri_decoded[loc])
470 if basename and not result_decoded[loc].endswith(basename): 470 if basename and not result_decoded[loc].endswith(basename):
471 result_decoded[loc] = os.path.join(result_decoded[loc], basename) 471 result_decoded[loc] = os.path.join(result_decoded[loc], basename)
472 else: 472 else: