rewritemeta: fix silly bug of using == for =

This was introduced in c0bc3afda9
This commit is contained in:
Hans-Christoph Steiner 2017-02-24 13:36:41 +01:00
parent 2a421d653c
commit 7a25dbc081

View file

@ -224,7 +224,7 @@ build_flags_order = [
'rm', 'rm',
'extlibs', 'extlibs',
'prebuild', 'prebuild',
'update', 'androidupdate',
'target', 'target',
'scanignore', 'scanignore',
'scandelete', 'scandelete',
@ -1275,7 +1275,7 @@ def write_txt(mf, app):
t = flagtype(f) t = flagtype(f)
if f == 'androidupdate': if f == 'androidupdate':
f == 'update' # avoid conflicting with Build(dict).update() f = 'update' # avoid conflicting with Build(dict).update()
mf.write(' %s=' % f) mf.write(' %s=' % f)
if t == TYPE_STRING: if t == TYPE_STRING:
mf.write(v) mf.write(v)