diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2014-03-09 22:08:40 +0400 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2014-03-09 22:08:40 +0400 |
commit | 12e077100985efcebcf278a8025c7df53d953a8c (patch) | |
tree | bf5cc7ccbdcd7b0d74c4ec46b19c5d1fbf71eb6a /eclass | |
parent | [dev-games/simgear, games-simulation/flightgear] bump OSG dep to >=3.2 (diff) | |
download | gamerlay-12e077100985efcebcf278a8025c7df53d953a8c.tar.gz gamerlay-12e077100985efcebcf278a8025c7df53d953a8c.tar.bz2 gamerlay-12e077100985efcebcf278a8025c7df53d953a8c.zip |
unpacker-nixstaller.eclass: fix handling of LZMA tarballs with new sys-apps/file
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/unpacker-nixstaller.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/unpacker-nixstaller.eclass b/eclass/unpacker-nixstaller.eclass index 74ed2ba..717fc33 100644 --- a/eclass/unpacker-nixstaller.eclass +++ b/eclass/unpacker-nixstaller.eclass @@ -38,7 +38,7 @@ nixstaller_unpack() { [[ -f "./$i" ]] && ( local type=$(file -b ${i}) case ${type} in - data) + data|LZMA*) tar -xJf "./$i" ;; gzip*) |