diff options
author | Aaron Griffin <aaron@archlinux.org> | 2007-04-18 07:50:00 +0200 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2007-04-18 07:50:00 +0200 |
commit | 1a42b23187941fa4b283e6f56a063455427c1e8e (patch) | |
tree | 8026fd29d27c01dde28a9a291d5764eb1fd39734 /scripts/makepkg | |
parent | eb448f222a5fd32158f5840ccf11c01338701104 (diff) | |
download | pacman-1a42b23187941fa4b283e6f56a063455427c1e8e.tar.gz pacman-1a42b23187941fa4b283e6f56a063455427c1e8e.tar.xz |
* Alexander Baldeck <alexander@archlinux.org>
Bugfix for FS#6944
Diffstat (limited to 'scripts/makepkg')
-rwxr-xr-x | scripts/makepkg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg b/scripts/makepkg index 618dbdf3..ebd6b543 100755 --- a/scripts/makepkg +++ b/scripts/makepkg @@ -822,7 +822,7 @@ else *application/x-cpio*) cmd="bsdtar -x -f $file" ;; *application/x-gzip*) - cmd="gunzip -f $file" ;; + cmd="gunzip -d -f $file" ;; *application/x-bzip*) cmd="bunzip2 -f $file" ;; esac |