From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 32AD915808B for ; Sun, 10 Apr 2022 11:37:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4A5FE0917; Sun, 10 Apr 2022 11:37:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0DE86E08FB for ; Sun, 10 Apr 2022 11:37:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BF35E3411B1 for ; Sun, 10 Apr 2022 11:37:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1BE5E391 for ; Sun, 10 Apr 2022 11:37:42 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1649590598.4bb7a1d01981115f06301761fe436cea9dd4ceb7.sam@gentoo> Subject: [gentoo-commits] proj/gcc-patches:master commit in: / X-VCS-Repository: proj/gcc-patches X-VCS-Files: make-tarball.sh X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4bb7a1d01981115f06301761fe436cea9dd4ceb7 X-VCS-Branch: master Date: Sun, 10 Apr 2022 11:37:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 413696f8-8fe8-4dc8-ad95-6957fdd9fa9c X-Archives-Hash: 4c2043c4f920605f10fbd61d6736dc72 commit: 4bb7a1d01981115f06301761fe436cea9dd4ceb7 Author: Sam James gentoo org> AuthorDate: Sun Apr 10 11:36:38 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Apr 10 11:36:38 2022 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=4bb7a1d0 make-tarball.sh: really use .xz Was too tired doing this. -j -> -J. Fixes: 7e6af77f9d31dbfa692a8efeb283799ae531b1b3 Reported-by: Fabian Groffen gentoo.org> Signed-off-by: Sam James gentoo.org> make-tarball.sh | 12 ++++++------ 1 file 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} ]] && {