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__.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 7ee12f4524..f79e278b1c 100644
--- a/bitbake/lib/bb/fetch2/__init__.py
+++ b/bitbake/lib/bb/fetch2/__init__.py
@@ -1518,7 +1518,7 @@ class FetchMethod(object):
1518 (file, urldata.parm.get('unpack'))) 1518 (file, urldata.parm.get('unpack')))
1519 1519
1520 base, ext = os.path.splitext(file) 1520 base, ext = os.path.splitext(file)
1521 if ext in ['.gz', '.bz2', '.Z', '.xz', '.lz']: 1521 if ext in ['.gz', '.bz2', '.Z', '.xz', '.lz', '.zst']:
1522 efile = os.path.join(rootdir, os.path.basename(base)) 1522 efile = os.path.join(rootdir, os.path.basename(base))
1523 else: 1523 else:
1524 efile = file 1524 efile = file