tazwok rev 175

tazwok: fix tar.Z archives case
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 21 13:49:43 2010 +0200 (2010-08-21)
parents 64dffaf60118
children 2d59a50a0a23
files tazwok
line diff
     1.1 --- a/tazwok	Sun Aug 15 18:31:23 2010 +0200
     1.2 +++ b/tazwok	Sat Aug 21 13:49:43 2010 +0200
     1.3 @@ -337,7 +337,7 @@
     1.4  				*bz2) tar xjf $SOURCES_REPOSITORY/$TARBALL -C $WOK/$PACKAGE;;
     1.5  				*tar) tar xf $SOURCES_REPOSITORY/$TARBALL -C $WOK/$PACKAGE;;
     1.6  				*xz) unxz -c $SOURCES_REPOSITORY/$TARBALL | tar xf - -C $WOK/$PACKAGE;;
     1.7 -				*Z) tar xZf $SOURCES_REPOSITORY/$TARBALL -C $WOK/$PACKAGE;;
     1.8 +				*Z) uncompress -c $SOURCES_REPOSITORY/$TARBALL | tar xf - -C $WOK/$PACKAGE;;
     1.9  				*) tar xzf $SOURCES_REPOSITORY/$TARBALL -C $WOK/$PACKAGE;;
    1.10  				esac
    1.11  				status