modules/gnome: enable warnings for g-ir-scanner

without warnings - scanner not useful for developer

Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
pull/77/head
Igor Gnatenko 10 years ago
parent c3f426cd21
commit 92d32c45a7
  1. 2
      modules/gnome.py

@ -57,7 +57,7 @@ class GnomeModule:
girfile = '%s-%s.gir' % (ns, nsversion) girfile = '%s-%s.gir' % (ns, nsversion)
scan_command = ['g-ir-scanner', '@INPUT@'] scan_command = ['g-ir-scanner', '@INPUT@']
scan_command += pkgargs scan_command += pkgargs
scan_command += ['--namespace='+ns, '--nsversion=' + nsversion, scan_command += ['--namespace='+ns, '--nsversion=' + nsversion, '--warn-all',
'--output', '@OUTPUT@'] '--output', '@OUTPUT@']
if 'includes' in kwargs: if 'includes' in kwargs:
includes = kwargs.pop('includes') includes = kwargs.pop('includes')

Loading…
Cancel
Save