From: Chris Gianelloni Date: Tue, 14 Jun 2005 19:48:11 +0000 (+0000) Subject: Change portage emerge to use --oneshot --nodeps to keep from merging the same package... X-Git-Tag: CATALYST_2_0_6_916~721 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=f72e5dd32fd5cbd292b669a6e750611343984a03;p=catalyst.git Change portage emerge to use --oneshot --nodeps to keep from merging the same packages multiple times. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@691 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/targets/support/chroot-functions.sh b/targets/support/chroot-functions.sh index 81b4158e..9ea83bb5 100755 --- a/targets/support/chroot-functions.sh +++ b/targets/support/chroot-functions.sh @@ -96,9 +96,10 @@ setup_portage(){ if [ "${clst_AUTORESUME}" = "1" -a -e /tmp/.clst_portage ] then - echo "Portage Autoresume point found not emerging portage" + echo "Portage Autoresume point found not emerging portage" else - USE="build" emerge portage && touch /tmp/.clst_portage || exit 1 + USE="build" emerge --oneshot --nodeps portage + touch /tmp/.clst_portage || exit 1 fi }