diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-05-02 13:56:28 +0900 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-05-10 15:31:00 +0900 |
commit | ad7aa7606168a47c6b909964e050a59b5cce0682 (patch) | |
tree | 1f6132f9000b94639319d8645ffd4fba592b9a61 /meson_options.txt | |
parent | 8ea9fad715d9cf4ce59c3583f5ad1d8abf9e320d (diff) | |
download | systemd-ad7aa7606168a47c6b909964e050a59b5cce0682.tar.gz |
meson: use array type option
Array type option is supported since 0.44.0.
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt index 61d3381d17..3b718311a3 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -46,8 +46,8 @@ option('debug-shell', type : 'string', value : '/bin/sh', description : 'path to debug shell binary') option('debug-tty', type : 'string', value : '/dev/tty9', description : 'specify the tty device for debug shell') -option('debug', type : 'string', - description : 'enable extra debugging (hashmap,mmap-cache)') +option('debug', type : 'array', choices : ['hashmap', 'mmap-cache'], value : [], + description : 'enable extra debugging') option('memory-accounting-default', type : 'boolean', description : 'enable MemoryAccounting= by default') |