From patchwork Wed Jul 27 19:23:00 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v2] unpack.py: add support for .tar.lzma Date: Wed, 27 Jul 2011 19:23:00 -0000 From: Dick Hollenbeck X-Patchwork-Id: 8727 Message-Id: <1311794580-20745-1-git-send-email-dick@softplc.com> To: openembedded-devel@lists.openembedded.org Cc: Dick Hollenbeck * invoke tar properly to unpack a file with .tar.lzma extension Signed-off-by: Dick Hollenbeck --- lib/oe/unpack.py | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/lib/oe/unpack.py b/lib/oe/unpack.py index 8e8bf36..d7e34a7 100644 --- a/lib/oe/unpack.py +++ b/lib/oe/unpack.py @@ -88,6 +88,8 @@ def unpack_file(file, destdir, parameters, env=None): cmd = 'xz -dc %s > %s' % (file, os.path.basename(root)) elif file.endswith('.tar.lz'): cmd = 'lzip -dc %s | tar x --no-same-owner -f -' % file + elif file.endswith('.tar.lzma'): + cmd = 'tar --lzma --no-same-owner -xf %s' % file elif file.endswith('.lz'): root, ext = os.path.splitext(file) cmd = 'lzip -dc %s > %s' % (file, os.path.basename(root))