diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-11-19 20:00:23 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-11-19 20:00:23 -0500 |
commit | 0f69716dad1b76e9b1df860c3b5807f57d8b9278 (patch) | |
tree | 4222d2ce66849aa5c765be4ef2cb4e3688f6dfcd /meson.build | |
parent | 74abd9de8b543ea7087729044c1cc8d34d07b778 (diff) | |
download | pango-0f69716dad1b76e9b1df860c3b5807f57d8b9278.tar.gz |
Make summary work with meson 0.55
That is what we have in ci.
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 3ceb37b4..c342f725 100644 --- a/meson.build +++ b/meson.build @@ -670,7 +670,7 @@ summary('Linker', cc.get_linker_id(), section: 'Toolchain') summary('Debugging', get_option('debug'), section: 'Build') summary('Optimization', get_option('optimization'), section: 'Build') -summary('Introspection', get_option('introspection'), section: 'Build') +summary('Introspection', get_option('introspection').enabled(), section: 'Build') summary('Documentation', get_option('gtk_doc'), section: 'Build') summary('Install tests', get_option('install-tests'), section: 'Build') |