diff options
author | David Robillard <d@drobilla.net> | 2023-09-23 20:31:02 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-23 20:31:02 -0400 |
commit | 9cdd960797001655c372388a68f78b50c31b38be (patch) | |
tree | 5449d416d88e446d37c790637f8ba14dc6cdd4dd | |
parent | 46636920700f61dc8c02bc76bc37df304dfae08d (diff) | |
download | lv2-9cdd960797001655c372388a68f78b50c31b38be.tar.xz |
Avoid quoting default value for meson boolean option
Deprecated in meson 1.1.0.
-rw-r--r-- | meson_options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt index d6bd40b..0a8c145 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -13,7 +13,7 @@ option('lv2dir', type: 'string', value: '', yield: true, option('old_headers', type: 'boolean', value: true, yield: true, description: 'Install backwards compatible headers at URI-style paths') -option('online_docs', type: 'boolean', value: 'false', yield: true, +option('online_docs', type: 'boolean', value: false, yield: true, description: 'Build documentation for online hosting') option('plugins', type: 'feature', value: 'auto', yield: true, |