# HG changeset patch # User Jan Nieuwenhuizen # Date 1250621550 -7200 # Node ID 0cffa88a3f3690c6340a24ad5cf26b53cd2cbd8f # Parent a326fa4dc40ef0ae38f47a8c29da82e3a9e7e984 Plain build fix: reset cross dir. diff -r a326fa4dc40e -r 0cffa88a3f36 gub/settings.py --- a/gub/settings.py Mon Aug 17 21:13:35 2009 +0200 +++ b/gub/settings.py Tue Aug 18 20:52:30 2009 +0200 @@ -141,13 +141,14 @@ if self.platform == 'tools' and GUB_TOOLS_PREFIX: self.system_root = GUB_TOOLS_PREFIX self.system_prefix = self.system_root + self.prefix_dir - self.system_cross_prefix = self.system_prefix + '/' + self.target_architecture - self.cross_prefix = self.system_prefix + self.cross_dir + self.system_cross_prefix = self.system_prefix + self.cross_dir + self.cross_prefix = self.system_cross_prefix if 'BOOTSTRAP' in os.environ.keys (): self.targetdir = self.system_root # Hmm, cross now == system, isn't that is silly? self.cross_prefix = self.system_prefix + self.system_cross_prefix = self.system_prefix + '/' + self.target_architecture self.tools_root = self.alltargetdir + self.tools_root_dir self.tools_prefix = self.tools_root + self.prefix_dir