[bindings] fix bug introduced in last commit

This commit is contained in:
Benjamin Dauvergne 2011-11-08 01:10:22 +01:00
parent 3c6970e047
commit 8002502152
1 changed files with 2 additions and 2 deletions

View File

@ -569,8 +569,8 @@ def parse_headers(srcdir):
if not 'Makefile.am' in filenames:
# not a source dir
continue
if not binding.options.idwsf and bname == 'id-wsf' or \
bname == 'id-wsf-2.0' or bname == 'ws':
if not binding.options.idwsf and (bname == 'id-wsf' or \
bname == 'id-wsf-2.0' or bname == 'ws'):
# ignore ID-WSF
continue
makefile_am = open(os.path.join(base, 'Makefile.am')).read()