diff options
author | Judd Vinet <judd@archlinux.org> | 2005-12-30 19:14:56 +0000 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2005-12-30 19:14:56 +0000 |
commit | 3992e7eac8c9efe2bd3b5bc25c1b0446ad847c1b (patch) | |
tree | a2f8908980b29bb463a48d51093a103f419fca50 /scripts | |
parent | 7df7ca1738f5e8b57ffced243276929824c5c9b8 (diff) | |
download | pacman-3992e7eac8c9efe2bd3b5bc25c1b0446ad847c1b.tar.xz |
Added .tbz2 extension to makepkg
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/makepkg | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/makepkg b/scripts/makepkg index c1df97eb..5de49e87 100755 --- a/scripts/makepkg +++ b/scripts/makepkg @@ -508,7 +508,7 @@ if [ "$GENMD5" = "0" ]; then case $file in *.tar.gz|*.tar.Z|*.tgz) cmd="tar --use-compress-program=gzip -xf $file" ;; - *.tar.bz2) + *.tar.bz2|*.tbz2) cmd="tar --use-compress-program=bzip2 -xf $file" ;; *.tar) cmd="tar -xf $file" ;; |