diff options
author | Alexander Baldeck <alexander@archlinux.org> | 2007-04-17 23:52:59 -0500 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2007-04-17 23:52:59 -0500 |
commit | a34dc1d4efb30c689ef0918846d3a1e736d47b31 (patch) | |
tree | 3902b7f14c2888cf6441dd033697d6bffbf00a90 | |
parent | 7f183d29ac9730a76bddfc66b6e64793098ff862 (diff) |
Bug fix for FS#6944
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
-rwxr-xr-x | scripts/makepkg.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg.in b/scripts/makepkg.in index 47086ef8..1125e852 100755 --- a/scripts/makepkg.in +++ b/scripts/makepkg.in @@ -858,7 +858,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 |