diff options
author | Michael Haubenwallner <haubi@gentoo.org> | 2017-05-29 12:46:45 +0000 |
---|---|---|
committer | Michael Haubenwallner <haubi@gentoo.org> | 2017-05-29 12:46:45 +0000 |
commit | 67c7e5357909065ff9800d0927df119cda868a98 (patch) | |
tree | 45950c4d91f9bd3404c7e26c71209af88fcf8dc7 | |
parent | make-tarball.sh: use current date as default tarball version (diff) | |
download | gentoo-67c7e5357909065ff9800d0927df119cda868a98.tar.gz gentoo-67c7e5357909065ff9800d0927df119cda868a98.tar.bz2 gentoo-67c7e5357909065ff9800d0927df119cda868a98.zip |
create xz tarballs
-rw-r--r-- | src/patchsets/mico/make-tarball.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/patchsets/mico/make-tarball.sh b/src/patchsets/mico/make-tarball.sh index 2402efb094..edb351d565 100644 --- a/src/patchsets/mico/make-tarball.sh +++ b/src/patchsets/mico/make-tarball.sh @@ -15,7 +15,7 @@ fi tarfile=mico-${micover}-gentoo-patches rm -f ${tarfile}-* -tarfile=${tarfile}-${patchver}.tar.bz2 +tarfile=${tarfile}-${patchver}.tar.xz rm -rf ./tmp mkdir -p tmp/patches || exit 1 @@ -42,7 +42,7 @@ if [[ -n ${helpers} ]]; then tardirs+=" helpers" fi -tar cjf ${tarfile} -C tmp ${tardirs} || exit 1 +tar cJf ${tarfile} -C tmp ${tardirs} || exit 1 rm -rf ./tmp |