From d7c63ad130478bf5b7188581d3b5872c0e4f3c2d Mon Sep 17 00:00:00 2001 From: backbone Date: Thu, 19 Jan 2023 04:01:07 +0300 Subject: [PATCH] Increase --backtrack=50 for automatic dependency resolution. --- sbin/gentoo-upgrade.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/gentoo-upgrade.sh b/sbin/gentoo-upgrade.sh index 0243601..dba156d 100755 --- a/sbin/gentoo-upgrade.sh +++ b/sbin/gentoo-upgrade.sh @@ -423,7 +423,7 @@ let STAGE_CNT++ if [ $STAGE_CNT -eq $STAGE ]; then echo "======= STAGE $STAGE: @world upgrade =======" echo 'Looking for necessity to upgrade @world packages...' - emerge -1uDNvt @world + emerge -1uDNvt --backtrack=50 @world [ 0 -ne $? ] && echo "Stage $STAGE: @world upgrade failed ;-( =======" && exit $STAGE let STAGE++