diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-23 09:42:27 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-23 09:42:27 +0000 |
commit | a5f67dcf25fae7c0200298623cccb61d9275fd28 (patch) | |
tree | 9e71e8abb38c91663e3101c17ffc47907479f61d /abuild.in | |
parent | 703ed7baf3743451b8824284082c9b523271d34f (diff) | |
download | abuild-a5f67dcf25fae7c0200298623cccb61d9275fd28.tar.gz abuild-a5f67dcf25fae7c0200298623cccb61d9275fd28.tar.bz2 abuild-a5f67dcf25fae7c0200298623cccb61d9275fd28.tar.xz abuild-a5f67dcf25fae7c0200298623cccb61d9275fd28.zip |
abuild: add support for uncompressed tar archives
Diffstat (limited to 'abuild.in')
-rwxr-xr-x | abuild.in | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -404,6 +404,9 @@ default_unpack() { for u in $source; do local s="$SRCDEST/${u##*/}" # $(basename $s) case "$s" in + *.tar) + msg "Unpacking $s..." + tar -C "$srcdir" -xf "$s" || return 1;; *.tar.gz|*.tgz) msg "Unpacking $s..." tar -C "$srcdir" -zxf "$s" || return 1;; |