]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
meson: fix option value
authorRosen Penev <rosenp@gmail.com>
Sun, 1 Jan 2023 20:25:47 +0000 (12:25 -0800)
committerRosen Penev <rosenp@gmail.com>
Sun, 1 Jan 2023 20:26:30 +0000 (12:26 -0800)
This is a boolean, not a string.

Found with muon analyze.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
meson_options.txt

index 339948b91394a0b833bd16fe8cc41d072ce924d7..6270eb0aa6ef082f6cf81323f46fe454d9905007 100644 (file)
@@ -193,7 +193,7 @@ option('use-tls',
 option('pg-bell',
        type : 'boolean', value : true,
        description : 'should pg ring the bell on invalid keys?')
-option('colors-default', type: 'boolean', value: 'true',
+option('colors-default', type: 'boolean', value: true,
        description: 'Enables colorized output from utils by default')
 
 option('fs-search-path',