Change portage emerge to use --oneshot --nodeps to keep from merging the same package...
authorChris Gianelloni <wolf31o2@gentoo.org>
Tue, 14 Jun 2005 19:48:11 +0000 (19:48 +0000)
committerChris Gianelloni <wolf31o2@gentoo.org>
Tue, 14 Jun 2005 19:48:11 +0000 (19:48 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@691 d1e1f19c-881f-0410-ab34-b69fee027534

targets/support/chroot-functions.sh

index 81b4158e7d640dcd50e17fdf00ed5caabf1a0c21..9ea83bb5d24f3ad974265b7737400ada2b8b10df 100755 (executable)
@@ -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
 }