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.
# 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