index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Nezmer <git@nezmer.info> | 2010-06-02 19:40:38 -0500 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2010-06-17 14:34:57 +1000 |
commit | 09aae4b7a5891ad738754a22f956c83911d1d9eb (patch) | |
tree | b0d6bcda65060686faf17904244dbb7c30511f51 /scripts/makepkg.sh.in | |
parent | c71fe7db42cd733e85965b11b887762cfd99a981 (diff) |
-rw-r--r-- | scripts/makepkg.sh.in | 9 |
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 6763b6e0..678359f8 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -682,9 +682,12 @@ extract_sources() { *) continue;; esac ;; *) - # Don't know what to use to extract this file, - # skip to the next file - continue;; + # See if bsdtar can recognize the file + if bsdtar -tf "$file" -q '*' &>/dev/null; then + cmd="bsdtar" + else + continue + fi ;; esac local ret=0 |