diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2017-09-12 09:18:21 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2017-09-12 09:25:29 +0100 |
commit | 3c909fe908360031ccda9444d18c0dfcac600222 (patch) | |
tree | ebc36a043c954195af14cab197b392903af85533 /doc | |
parent | 9db74a03b96bafbbd7698682d713a57122627e39 (diff) | |
download | json-glib-3c909fe908360031ccda9444d18c0dfcac600222.tar.gz |
build: Clean up configuration options
Drop the Autotool-isms, and use something more in line with what Meson
expects for configuration options.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/meson.build b/doc/meson.build index e2c871c..678853e 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -39,7 +39,7 @@ gnome.gtkdoc('json-glib', install: true) xsltproc = find_program('xsltproc', required: false) -if get_option('enable-man') and xsltproc.found() +if xsltproc.found() xlstproc_flags = [ '--nonet', '--stringparam', 'man.output.quietly', '1', |