Don't do verbose unpacking, it's just log noise

svn path=/nixpkgs/branches/stdenv-updates/; revision=33573
This commit is contained in:
Shea Levy 2012-04-04 16:25:17 +00:00
parent 461455afe9
commit 4a84fd30b5

View File

@ -432,15 +432,15 @@ unpackFile() {
case "$curSrc" in case "$curSrc" in
*.tar.xz | *.tar.lzma) *.tar.xz | *.tar.lzma)
# Don't rely on tar knowing about .xz. # Don't rely on tar knowing about .xz.
xz -d < $curSrc | tar xvf - xz -d < $curSrc | tar xf -
;; ;;
*.tar | *.tar.* | *.tgz | *.tbz2) *.tar | *.tar.* | *.tgz | *.tbz2)
# GNU tar can automatically select the decompression method # GNU tar can automatically select the decompression method
# (info "(tar) gzip"). # (info "(tar) gzip").
tar xvf $curSrc tar xf $curSrc
;; ;;
*.zip) *.zip)
unzip $curSrc unzip -qq $curSrc
;; ;;
*) *)
if [ -d "$curSrc" ]; then if [ -d "$curSrc" ]; then