diff options
author | Igor Gnatenko <i.gnatenko.brain@gmail.com> | 2015-03-25 13:43:50 +0300 |
---|---|---|
committer | Igor Gnatenko <i.gnatenko.brain@gmail.com> | 2015-03-26 02:29:12 +0300 |
commit | 92d32c45a77eb9b7e8002c2929cd1db7272dea73 (patch) | |
tree | 465e2ad3771e055d4e1dd6f3f89245d86f547da7 /modules | |
parent | c3f426cd21998aa61eda43e60cb8d458992f14de (diff) | |
download | meson-92d32c45a77eb9b7e8002c2929cd1db7272dea73.zip meson-92d32c45a77eb9b7e8002c2929cd1db7272dea73.tar.gz meson-92d32c45a77eb9b7e8002c2929cd1db7272dea73.tar.bz2 |
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>
Diffstat (limited to 'modules')
-rw-r--r-- | modules/gnome.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gnome.py b/modules/gnome.py index 80fef7c..11c1cc3 100644 --- a/modules/gnome.py +++ b/modules/gnome.py @@ -57,7 +57,7 @@ class GnomeModule: girfile = '%s-%s.gir' % (ns, nsversion) scan_command = ['g-ir-scanner', '@INPUT@'] scan_command += pkgargs - scan_command += ['--namespace='+ns, '--nsversion=' + nsversion, + scan_command += ['--namespace='+ns, '--nsversion=' + nsversion, '--warn-all', '--output', '@OUTPUT@'] if 'includes' in kwargs: includes = kwargs.pop('includes') |