From: Matt Turner Date: Sat, 10 Nov 2012 23:38:03 +0000 (-0800) Subject: Use update_seed's argument as an argument list to emerge X-Git-Tag: catalyst-2.0.12.2~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=81796dee7481246aa6ec0634ccdc2350746bfb20;p=catalyst.git 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. --- 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