From 81796dee7481246aa6ec0634ccdc2350746bfb20 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Sat, 10 Nov 2012 15:38:03 -0800 Subject: [PATCH] Use update_seed's argument as an argument list to emerge Previously, update_seed caused the seed stage to be updated with --update --deep --newuse @world. This proved to be unnecessary in the majority of cases. Simply give run_merge the previously unused argument of update_seed as an argument list. This allows updating select packages in a seed stage. --- targets/stage1/stage1-chroot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/stage1/stage1-chroot.sh b/targets/stage1/stage1-chroot.sh index a9536a63..377a7cf7 100644 --- a/targets/stage1/stage1-chroot.sh +++ b/targets/stage1/stage1-chroot.sh @@ -24,7 +24,7 @@ clst_root_path=/ setup_pkgmgr # Update stage3 if [ -n "${clst_update_seed_cache}" ]; then echo "Updating seed stage..." - clst_root_path=/ run_merge "--update --deep --newuse @world" + clst_root_path=/ run_merge "${clst_update_seed_cache}" else echo "Skipping seed stage update..." fi -- 2.26.2