From 2f4267fd416aa1fb7ae91f0a82cd83d2e28287a7 Mon Sep 17 00:00:00 2001 From: Roey Darwish Dror Date: Fri, 3 Apr 2020 13:43:12 +0300 Subject: [PATCH] Upgrade Gentoo with --with-bdeps=y (fix #382) (#390) --- src/steps/os/linux.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/steps/os/linux.rs b/src/steps/os/linux.rs index 91bb441a..d03cb232 100644 --- a/src/steps/os/linux.rs +++ b/src/steps/os/linux.rs @@ -274,7 +274,7 @@ fn upgrade_gentoo(sudo: &Option, run_type: RunType) -> Result<()> { run_type .execute(&sudo) .arg("/usr/bin/emerge") - .args(&["-uDNa", "world"]) + .args(&["-uDNa", "--with-bdeps=y", "world"]) .check_run()?; } else { print_warning("No sudo detected. Skipping system upgrade");