Fix a small typo breaking the release build process.
This commit is contained in:
parent
14f2de9664
commit
fbb84f8df2
|
@ -117,7 +117,7 @@ class Builder:
|
|||
builderDefs = (tDef for tDef in target_steps() if tDef[0] != 'source')
|
||||
for builderDef in builderDefs:
|
||||
builder = get_target_step(builderDef)
|
||||
if option('make_dist') and builderName == option('target'):
|
||||
if option('make_dist') and builderDef == option('target'):
|
||||
print("make dist {} ({}):".format(builder.name, builderDef[0]))
|
||||
builder.make_dist()
|
||||
continue
|
||||
|
|
Loading…
Reference in New Issue