summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErnestas Kulik <ekulik@redhat.com>2019-02-10 08:32:33 +0100
committerAntónio Fernandes <antoniof@gnome.org>2021-08-15 21:27:19 +0100
commita7527d599a6295c3e2af49fca6690c81eeec8b88 (patch)
tree2e660a4ecd315141c8b8709f99bb3b02fbda9292
parent7d188272c80dfa179cf2284aba756c25211d182e (diff)
downloadnautilus-a7527d599a6295c3e2af49fca6690c81eeec8b88.tar.gz
meson.build: Use environment to make warnings fatal
--g-fatal-warnings no longer exists in GTK 4.
-rw-r--r--src/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build
index 39e0b0370..f1948160b 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -324,9 +324,9 @@ if get_option('tests') == 'all'
'nautilus', nautilus,
args: [
'--check',
- '--g-fatal-warnings'
],
env: [
+ 'G_DEBUG=fatal-warnings',
'GSETTINGS_SCHEMA_DIR=@0@'.format(join_paths(meson.build_root(), 'data'))
]
)