diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-01-11 19:29:20 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2019-01-14 12:10:46 +0000 |
commit | a5c4dbaf3a03a7dda99470a13f0b12fd6cc68f54 (patch) | |
tree | a19e489cb0574254ef94bc116296fa472dc8cd18 /recipes/build-tools/glib-tools.recipe | |
parent | c2839dfcf108abb11991815bc185364b27ca7c7e (diff) |
Auto-detect and disable gtk-doc and example options
Instead of doing it per-recipe, auto-detect `gtk_doc` and `examples`
options for Meson recipes and always pass `--disable-gtk-doc` for
Autotools recipes.
Diffstat (limited to 'recipes/build-tools/glib-tools.recipe')
-rw-r--r-- | recipes/build-tools/glib-tools.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/build-tools/glib-tools.recipe b/recipes/build-tools/glib-tools.recipe index 89c6e2db..5d19ce27 100644 --- a/recipes/build-tools/glib-tools.recipe +++ b/recipes/build-tools/glib-tools.recipe @@ -9,7 +9,7 @@ class Recipe(recipe.Recipe): tarball_checksum = '40ef3f44f2c651c7a31aedee44259809b6f03d3d20be44545cd7d177221c0b8d' licenses = [License.LGPLv2Plus] btype = BuildType.MESON - meson_options = {'gtk_doc': 'false', 'internal_pcre': 'true', 'libmount': 'false', + meson_options = {'internal_pcre': 'true', 'libmount': 'false', 'dtrace': 'false', 'iconv': 'libc', 'selinux' : 'false'} deps = ['libffi', 'zlib'] patches = ['../glib/glib-2.57-meson-backported-fixes.patch', |