diff options
author | illiliti <illiliti@protonmail.com> | 2022-04-05 06:09:26 +0300 |
---|---|---|
committer | illiliti <illiliti@protonmail.com> | 2022-04-05 06:09:26 +0300 |
commit | fe00d92c051d4f5d56cdb790cb44e58842d84154 (patch) | |
tree | c00325f46049b815553bed47ab7d54228262bdf6 /meson_options.txt | |
parent | d152b1bae9153476cf057f816ae3ce96b7b538a8 (diff) | |
download | pango-fe00d92c051d4f5d56cdb790cb44e58842d84154.tar.gz |
meson: Use proper type for bools
Fix invalid usage of bools which violates official meson specification and thus
breaks muon, an implementation of meson written in C.
Diffstat (limited to 'meson_options.txt')
-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 58200e00..3cd1b0bc 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -10,7 +10,7 @@ option('introspection', option('install-tests', description : 'Install tests', type: 'boolean', - value: 'false') + value: false) option('fontconfig', description : 'Build with FontConfig support. Passing \'auto\' or \'disabled\' disables fontconfig where it is optional, i.e. on Windows and macOS. Passing \'disabled\' on platforms where fontconfig is required results in error.', type: 'feature', |