Changed livecd-stage1 to merge each package individually. This should not make it...
authorChris Gianelloni <wolf31o2@gentoo.org>
Wed, 15 Dec 2004 00:50:35 +0000 (00:50 +0000)
committerChris Gianelloni <wolf31o2@gentoo.org>
Wed, 15 Dec 2004 00:50:35 +0000 (00:50 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@494 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
targets/livecd-stage1/livecd-stage1-chroot.sh

index 25026d8c5ac2ffd900b1b9e2d519962e25436d4b..1d27d1139372ad4d0af1593474dffcca29126842 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,12 @@
 # ChangeLog for gentoo/src/catalyst 
 # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.121 2004/12/12 16:39:11 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.122 2004/12/15 00:50:35 wolf31o2 Exp $
+
+  14 Dec 2004; Chris Gianelloni <wolf31o2@gentoo.org>
+  targets/livecd-stage1/livecd-stage1-chroot.sh:
+  Changed livecd-stage1 to merge each package individually. This should not
+  make it into a production version of catalyst, but is here as a possible
+  solution to bug #68307.
 
   12 Dec 2004; Chris Gianelloni <wolf31o2@gentoo.org>
   livecd/runscript/alpha-archscript.sh, livecd/runscript/hppa-archscript.sh,
index 3264ca8f0539814ba596908db81c468e585a58c5..18fd89d82d28646b9a3a0d9e4f3e5ad5ce9333d1 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/bash
 # Copyright 1999-2004 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/targets/livecd-stage1/livecd-stage1-chroot.sh,v 1.9 2004/10/15 02:46:58 zhen Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/targets/livecd-stage1/livecd-stage1-chroot.sh,v 1.10 2004/12/15 00:50:35 wolf31o2 Exp $
 
 /usr/sbin/env-update
 source /etc/profile
@@ -44,4 +44,6 @@ then
        sleep 15
 fi
 
-emerge ${clst_emergeopts} ${clst_packages}
+for packages in ${clst_packages}; do
+       emerge ${clst_emergeopts} ${packages}
+done