after config.setcpv() has calculated PORTAGE_USE. Thanks to Arfrever for
reporting.
svn path=/main/trunk/; revision=13729
if mydb:
if not hasattr(mydb, "aux_get"):
for k in aux_keys:
- v = mydb.get(k)
- if v is not None:
- pkg_configdict[k] = v
+ if k in mydb:
+ # Make these lazy, since __getitem__ triggers
+ # evaluation of USE conditionals which can't
+ # occur until PORTAGE_USE is calculated below.
+ pkg_configdict.addLazySingleton(k,
+ mydb.__getitem__, k)
else:
for k, v in izip(aux_keys, mydb.aux_get(self.mycpv, aux_keys)):
pkg_configdict[k] = v