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 B444C158015 for ; Mon, 18 Dec 2023 13:56:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B277B2BC017; Mon, 18 Dec 2023 13:56:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 983562BC017 for ; Mon, 18 Dec 2023 13:56:47 +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 B4559335D6A for ; Mon, 18 Dec 2023 13:56:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F2381AE5 for ; Mon, 18 Dec 2023 13:56:44 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1702907794.28c08ce8457dbf5a9ac1a9a4cdf6265e7b20c4eb.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: profiles/releases/23.0/ X-VCS-Repository: repo/gentoo X-VCS-Files: profiles/releases/23.0/make.defaults X-VCS-Directories: profiles/releases/23.0/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 28c08ce8457dbf5a9ac1a9a4cdf6265e7b20c4eb X-VCS-Branch: master Date: Mon, 18 Dec 2023 13:56:44 +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: ee5460f0-a736-463b-b4a4-b18613762434 X-Archives-Hash: 6755028190ee4813ae4fa1ef1968f2a0 commit: 28c08ce8457dbf5a9ac1a9a4cdf6265e7b20c4eb Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Dec 18 13:55:37 2023 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Mon Dec 18 13:56:34 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28c08ce8 profiles, 23.0: add zstd to BOOTSTRAP_USE Needed since otherwise LLVM fails to install into stage1 on llvm profiles Signed-off-by: Andreas K. Hüttel gentoo.org> profiles/releases/23.0/make.defaults | 3 +++ 1 file changed, 3 insertions(+) diff --git a/profiles/releases/23.0/make.defaults b/profiles/releases/23.0/make.defaults index 67fcf7e034d8..16ffd78fb52d 100644 --- a/profiles/releases/23.0/make.defaults +++ b/profiles/releases/23.0/make.defaults @@ -21,3 +21,6 @@ LDFLAGS="-Wl,-O1 -Wl,--as-needed" # Avoid removing merged-usr symlinks. UNINSTALL_IGNORE="${UNINSTALL_IGNORE} /bin /lib /lib32 /lib64 /libx32 /sbin /usr/sbin" UNINSTALL_IGNORE="${UNINSTALL_IGNORE} /usr/lib/modules/*" + +# needed for llvm profiles +BOOTSTRAP_USE="${BOOTSTRAP_USE} zstd"