commit: 2beb40a532501f3a7f030696920547d738163e0a Author: Nick Bello <uwu <AT> nikku <DOT> icu> AuthorDate: Mon Mar 20 12:37:35 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Mar 20 12:38:23 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=2beb40a5
scripts/bootstrap-prefix.sh: avoid curl/nghttp2 circular dep Closes: https://bugs.gentoo.org/901101 Signed-off-by: Sam James <sam <AT> gentoo.org> scripts/bootstrap-prefix.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 9f048edb00..c032f7424a 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -2245,7 +2245,8 @@ bootstrap_stage3() { fi # Avoid installing git or encryption just for fun while completing @system - export USE="-git -crypt" + # e.g. bug #901101 + export USE="-git -crypt -http2" # Portage should figure out itself what it needs to do, if anything. einfo "running emerge -uDNv system"
