waifulib: fwgslib: fix flag detection

This commit is contained in:
Alibek Omarov 2019-10-11 07:12:07 +03:00
parent 9696e0f91e
commit 47d47b7c02
1 changed files with 5 additions and 4 deletions

View File

@ -62,13 +62,14 @@ def filter_flags(conf, flags, required_flags, checkfunc, checkarg, compiler):
conf.start_msg('Checking for %s' % f)
f = getattr(conf, 'check_' + checkfunc)
success = f(conf, **{ checkarg: [f] + check_flags, 'mandatory': False })
if success:
try:
f(conf, **{ checkarg: [f] + check_flags})
except conf.errors.ConfigurationError:
conf.end_msg('no', color='YELLOW')
else:
conf.end_msg('yes')
supported_flags.append(f)
else:
conf.end_msg('no', color='YELLOW')
return supported_flags