Fix a small typo breaking the release build process.

This commit is contained in:
Matthieu Gautier
2018-06-18 14:17:06 +02:00
parent 14f2de9664
commit fbb84f8df2

View File

@ -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