From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id C69DB1381F3 for ; Wed, 14 Nov 2012 03:02:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A029921C07F for ; Wed, 14 Nov 2012 03:02:33 +0000 (UTC) Received: from mail-da0-f53.google.com (mail-da0-f53.google.com [209.85.210.53]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E9595E058F for ; Wed, 14 Nov 2012 01:10:01 +0000 (UTC) Received: by mail-da0-f53.google.com with SMTP id g9so3372311dad.40 for ; Tue, 13 Nov 2012 17:10:00 -0800 (PST) Received: by 10.68.234.98 with SMTP id ud2mr40781545pbc.136.1352855400713; Tue, 13 Nov 2012 17:10:00 -0800 (PST) Received: from localhost ([108.161.26.171]) by mx.google.com with ESMTPS id uh10sm6783697pbc.35.2012.11.13.17.09.59 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 13 Nov 2012 17:09:59 -0800 (PST) From: mattst88@gentoo.org To: gentoo-catalyst@lists.gentoo.org Cc: Matt Turner Subject: [gentoo-catalyst] [PATCH 1/2] Use update_seed's argument as an argument list to emerge Date: Tue, 13 Nov 2012 17:09:45 -0800 Message-Id: <1352855386-4924-1-git-send-email-mattst88@gentoo.org> X-Mailer: git-send-email 1.7.8.6 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: 1ffe4f11-39e3-484f-84bc-904a0147e424 X-Archives-Hash: f747144b933ccbf526e2bce6bc8d1e0f From: Matt Turner 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 files changed, 1 insertions(+), 1 deletions(-) diff --git a/targets/stage1/stage1-chroot.sh b/targets/stage1/stage1-chroot.sh index a9536a6..377a7cf 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 -- 1.7.8.6