aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-04-10 12:36:38 +0100
committerSam James <sam@gentoo.org>2022-04-10 12:36:38 +0100
commit4bb7a1d01981115f06301761fe436cea9dd4ceb7 (patch)
treeb8acb22a1f8b96ba6af59e40453704e48a8901fe /make-tarball.sh
parentmake-tarball.sh: use xz (diff)
downloadgcc-patches-4bb7a1d01981115f06301761fe436cea9dd4ceb7.tar.gz
gcc-patches-4bb7a1d01981115f06301761fe436cea9dd4ceb7.tar.bz2
gcc-patches-4bb7a1d01981115f06301761fe436cea9dd4ceb7.zip
make-tarball.sh: really use .xz
Was too tired doing this. -j -> -J. Fixes: 7e6af77f9d31dbfa692a8efeb283799ae531b1b3 Reported-by: Fabian Groffen <grobian@gentoo.org> Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'make-tarball.sh')
-rwxr-xr-xmake-tarball.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/make-tarball.sh b/make-tarball.sh
index fa59a44..94035e3 100755
--- a/make-tarball.sh
+++ b/make-tarball.sh
@@ -113,23 +113,23 @@ find tmp/ -name CVS -type d | xargs rm -rf
# standard jobbies
[[ -n ${PATCH_VER} ]] && {
-tar -jcf gcc-${sgver}-patches-${PATCH_VER}.tar.xz \
+tar -Jcf gcc-${sgver}-patches-${PATCH_VER}.tar.xz \
-C tmp patch || exit 1 ; }
[[ -n ${MUSL_VER} ]] && {
-tar -jcf gcc-${sgver}-musl-patches-${MUSL_VER}.tar.xz \
+tar -Jcf gcc-${sgver}-musl-patches-${MUSL_VER}.tar.xz \
-C tmp musl || exit 1 ; }
[[ -n ${PIE_VER} ]] && {
-tar -jcf gcc-${sgver}-piepatches-v${PIE_VER}.tar.xz \
+tar -Jcf gcc-${sgver}-piepatches-v${PIE_VER}.tar.xz \
-C tmp piepatch || exit 1 ; }
[[ -n ${SPECS_VER} ]] && {
-tar -jcf gcc-${sgver}-specs-${SPECS_VER}.tar.xz \
+tar -Jcf gcc-${sgver}-specs-${SPECS_VER}.tar.xz \
-C tmp specs || exit 1 ; }
[[ -n ${PP_VER} ]] && {
mv tmp/ssp/protector.patch tmp/ssp/gcc-${gver}-ssp.patch
-tar -jcf gcc-${gver}-ssp-${PP_VER}.tar.xz \
+tar -Jcf gcc-${gver}-ssp-${PP_VER}.tar.xz \
-C tmp ssp || exit 1 ; }
[[ -d ${gver}/man ]] && {
-tar -jcf gcc-${MAN_VER}-manpages.tar.xz \
+tar -Jcf gcc-${MAN_VER}-manpages.tar.xz \
-C tmp/man . || exit 1 ; }
# extra cruft
[[ -n ${HTB_VER} ]] && {