aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2015-03-25 13:43:50 +0300
committerIgor Gnatenko <i.gnatenko.brain@gmail.com>2015-03-26 02:29:12 +0300
commit92d32c45a77eb9b7e8002c2929cd1db7272dea73 (patch)
tree465e2ad3771e055d4e1dd6f3f89245d86f547da7 /modules
parentc3f426cd21998aa61eda43e60cb8d458992f14de (diff)
downloadmeson-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.py2
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')