# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.438 2005/12/08 22:02:05 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.439 2005/12/08 22:23:31 rocket Exp $
+
+ 08 Dec 2005; Eric Edgar <rocket@gentoo.org>
+ modules/generic_stage_target.py:
+ remove extra self.env={} that was resetting the environment to null
08 Dec 2005; Eric Edgar <rocket@gentoo.org>
modules/livecd_stage1_target.py:
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/modules/generic_stage_target.py,v 1.92 2005/12/08 15:16:48 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/modules/generic_stage_target.py,v 1.93 2005/12/08 22:23:31 rocket Exp $
"""
This class does all of the chroot setup, copying of files, etc. It is
def setup_environment(self):
# modify the current environment. This is an ugly hack that should be fixed. We need this
# to use the os.system() call since we can't specify our own environ:
- self.env={}
for x in self.settings.keys():
# "/" is replaced with "_", "-" is also replaced with "_"
varname="clst_"+string.replace(x,"/","_")