build_library/catalyst.sh: Specify which gcc package to rebuild

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.
This commit is contained in:
Kai Lüke 2020-07-27 15:57:49 +02:00
parent d23182c3b4
commit c016b581b4
No known key found for this signature in database
GPG Key ID: E5601DA3A1D902A8

View File

@ -129,7 +129,7 @@ update_seed: yes
# dev-lang/rust. To avoid such an issue, we should update virtual/rust # dev-lang/rust. To avoid such an issue, we should update virtual/rust
# before building stage1. Since virtual/rust automatically pulls in # before building stage1. Since virtual/rust automatically pulls in
# dev-lang/rust, we do not need to explicitly specify dev-lang/rust here. # 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 EOF
catalyst_stage_default catalyst_stage_default
} }