Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 177796
Collapse All | Expand All

(-)modules/generic_stage_target.py (-1 / +2 lines)
Lines 882-888 Link Here
882
			myf=open(self.settings["chroot_path"]+"/etc/make.conf","w")
882
			myf=open(self.settings["chroot_path"]+"/etc/make.conf","w")
883
			myf.write("# These settings were set by the catalyst build script that automatically\n# built this stage.\n")
883
			myf.write("# These settings were set by the catalyst build script that automatically\n# built this stage.\n")
884
			myf.write("# Please consult /etc/make.conf.example for a more detailed example.\n")
884
			myf.write("# Please consult /etc/make.conf.example for a more detailed example.\n")
885
			myf.write('CFLAGS="'+self.settings["CFLAGS"]+'"\n')
885
			if self.settings.has_key("CFLAGS"):
886
				myf.write('CFLAGS="'+self.settings["CFLAGS"]+'"\n')
886
			if self.settings.has_key("CXXFLAGS"):
887
			if self.settings.has_key("CXXFLAGS"):
887
				myf.write('CXXFLAGS="'+self.settings["CXXFLAGS"]+'"\n')
888
				myf.write('CXXFLAGS="'+self.settings["CXXFLAGS"]+'"\n')
888
			else:
889
			else:

Return to bug 177796