From: John P. Davis Date: Mon, 5 Apr 2004 20:31:43 +0000 (+0000) Subject: bugfix for 46861 X-Git-Tag: CATALYST_2_0_6_916~1028 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=125396f9fb85ac4e012deab4b7055dfb8d3e13b3;p=catalyst.git bugfix for 46861 git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@345 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/ChangeLog b/ChangeLog index d4022269..282e11ac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for gentoo/src/catalyst # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.37 2004/04/04 20:20:50 beejay Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.38 2004/04/05 20:31:43 zhen Exp $ + + 05 Apr 2004; John Davis modules/targets.py: + bugfix for #46861 04 Apr 2004; Benjamin Judas livecd/kconfig/config-2004.1-gentoo-dev-sources-2.6.3-r1, diff --git a/modules/targets.py b/modules/targets.py index fc2cc306..899dce72 100644 --- a/modules/targets.py +++ b/modules/targets.py @@ -1,6 +1,6 @@ # Distributed under the GNU General Public License version 2 # Copyright 2003-2004 Gentoo Technologies, Inc. -# $Header: /var/cvsroot/gentoo/src/catalyst/modules/Attic/targets.py,v 1.99 2004/04/02 21:09:10 zhen Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/modules/Attic/targets.py,v 1.100 2004/04/05 20:31:43 zhen Exp $ import os,string,imp,types,shutil from catalyst_support import * @@ -208,6 +208,7 @@ class generic_stage_target(generic_target): myf=open(self.settings["chroot_path"]+"/etc/make.conf","w") myf.write("# These settings were set by the catalyst build script that automatically built this stage\n") + myf.write("# Please consult /etc/make.conf.example for a more detailed example\n") myf.write('CFLAGS="'+self.settings["CFLAGS"]+'"\n') myf.write('CHOST="'+self.settings["CHOST"]+'"\n') myusevars=[]