continue when we hit an ignored dep dont break, we are not yet done dep solving the build
This commit is contained in:
parent
06f940299c
commit
f7d990f8d7
1 changed files with 2 additions and 1 deletions
|
|
@ -756,7 +756,8 @@ class BuildTracker(object):
|
|||
for dep_id in build.deps:
|
||||
dep = self.scanBuild(dep_id, from_build=build, depth=depth+1, tag=tag)
|
||||
if dep.name in self.ignorelist:
|
||||
break
|
||||
# we are not done dep solving yet. but we dont want this dep in our buildroot
|
||||
continue
|
||||
else:
|
||||
if dep.substitute:
|
||||
dep2 = self.getSubstitute(dep.substitute)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue