From ba7d7f14104c6ccf3f44c8e77df3b04fd19f3211 Mon Sep 17 00:00:00 2001 From: David Michael Date: Thu, 25 Oct 2018 20:22:35 +0000 Subject: [PATCH] update_chroot: Add a workaround for a package rename This avoids SDK update failures due to conflicts. It can be reverted once SDKs have the new version built into them. --- update_chroot | 3 +++ 1 file changed, 3 insertions(+) diff --git a/update_chroot b/update_chroot index 870d599ef6..b9eff5847a 100755 --- a/update_chroot +++ b/update_chroot @@ -233,6 +233,9 @@ if [ "${FLAGS_workon}" -eq "${FLAGS_TRUE}" ]; then done fi +# XXX: Work around a rename; delete this after SDKs contain the new package. +sudo -E ${EMERGE_CMD} --rage-clean app-crypt/sbsigntool 2>/dev/null || : + # Second pass, update everything else. EMERGE_FLAGS+=( --deep ) info "Updating all SDK packages"