Also strip comma-separated build flags

This commit is contained in:
Daniel Martí 2014-02-15 11:00:19 +01:00
parent 67acf4c3fc
commit ea4190e241

View file

@ -504,7 +504,7 @@ def parse_metadata(metafile):
t = flagtype(pk)
if t == 'list':
# Port legacy ';' separators
thisbuild[pk] = pv.replace(';',',').split(',')
thisbuild[pk] = [v.strip() for v in pv.replace(';',',').split(',')]
elif t == 'string':
thisbuild[pk] = pv
elif t == 'script':