# Copyright 2002-2009 Gentoo Foundation; 2008-2009 Various authors (see AUTHORS)
# Distributed under the GPL v2
+ 04 Apr 2009; Andrew Gaffney <agaffney@gentoo.org>
+ modules/catalyst/config.py:
+ Explicitly set target: in per-target spec values
+
04 Apr 2009; Andrew Gaffney <agaffney@gentoo.org>
modules/catalyst/arch/arm.py:
Apply additional patch from gentoo bug #255793 for arm subarches
self.target = target
def get_values(self, target=None):
+ tmp = self.values['global']
if target is None:
target = self.target
- tmp = self.values['global']
+ tmp['target'] = target
if target in self.values:
tmp.update(self.values[target])
return tmp