From c016b581b4088e267eceead9fbfc0c7d9965e592 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kai=20L=C3=BCke?= Date: Mon, 27 Jul 2020 15:57:49 +0200 Subject: [PATCH] build_library/catalyst.sh: Specify which gcc package to rebuild MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The default update seed command does only specify gcc which leads to an error because »The short ebuild name "gcc" is ambiguous«. Choose the standard package name instead of the cross compiler packages which are only known to emerge because we build them as part of an SDK release now. --- build_library/catalyst.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_library/catalyst.sh b/build_library/catalyst.sh index f339d18331..196057aeff 100644 --- a/build_library/catalyst.sh +++ b/build_library/catalyst.sh @@ -129,7 +129,7 @@ update_seed: yes # dev-lang/rust. To avoid such an issue, we should update virtual/rust # before building stage1. Since virtual/rust automatically pulls in # dev-lang/rust, we do not need to explicitly specify dev-lang/rust here. -update_seed_command: --update --deep --newuse --complete-graph --rebuild-if-new-ver gcc virtual/rust +update_seed_command: --update --deep --newuse --complete-graph --rebuild-if-new-ver --rebuild-exclude cross-*-cros-linux-gnu/* sys-devel/gcc virtual/rust EOF catalyst_stage_default }