diff options
author | Bastien Nocera <hadess@hadess.net> | 2017-11-29 18:09:55 +0100 |
---|---|---|
committer | Bastien Nocera <hadess@hadess.net> | 2017-12-05 06:46:55 +0100 |
commit | 4ea4a3f9989a57fca57958c85cba1fca60216767 (patch) | |
tree | f3f6b2241c1ac9a4143de6607afa86c3eded76e2 /gdk-pixbuf | |
parent | 328b53f0b67293c5b310d4e1ce9894a83644416f (diff) | |
download | gdk-pixbuf-4ea4a3f9989a57fca57958c85cba1fca60216767.tar.gz |
build: Remove "with" from Meson build options
As per https://wiki.gnome.org/Initiatives/GnomeGoals/MesonPorting
https://bugzilla.gnome.org/show_bug.cgi?id=790995
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk-pixbuf/meson.build b/gdk-pixbuf/meson.build index a02177c70..5ab6f94f7 100644 --- a/gdk-pixbuf/meson.build +++ b/gdk-pixbuf/meson.build @@ -242,7 +242,7 @@ loaders_cache = custom_target('loaders.cache', build_by_default: true) loaders_dep = declare_dependency(sources: [ loaders_cache ]) -build_gir = get_option('with_gir') and not meson.is_cross_build() +build_gir = get_option('gir') and not meson.is_cross_build() if build_gir gir_args = [ '--quiet', |