Merge branch '3.0' into 4.0-pre-not-stable

This commit is contained in:
Nico Schottelius 2014-02-14 20:52:36 +01:00
commit 2734e5069e
33 changed files with 43 additions and 20 deletions

View file

@ -189,7 +189,8 @@ class Emulator(object):
def record_requirements(self):
"""record requirements"""
if "CDIST_ORDER_DEPENDENCY" in self.env:
# Inject the predecessor, but not if its an override (this would leed to an circular dependency)
if "CDIST_ORDER_DEPENDENCY" in self.env and not 'CDIST_OVERRIDE' in self.env:
# load object name created bevor this one from typeorder file ...
with open(self.typeorder_path, 'r') as typecreationfile:
typecreationorder = typecreationfile.readlines()