From 6cb00878e22099743301ead7c5e317d19fc823fe Mon Sep 17 00:00:00 2001 From: Simon Deziel Date: Tue, 8 Apr 2025 15:11:44 -0400 Subject: [PATCH] meson_options.txt: remove space before `:` for consistency Essentially doing: `s/ : /: /g` Signed-off-by: Simon Deziel --- meson_options.txt | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index d21dd365a..62f885958 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -14,14 +14,14 @@ option('examples', type: 'boolean', value: true, description: 'build and install examples') # was --init-script in autotools -option('init-script', type : 'array', - choices : ['systemd', 'sysvinit'], value : ['systemd'], - description : 'init script') +option('init-script', type: 'array', + choices: ['systemd', 'sysvinit'], value: ['systemd'], + description: 'init script') # was --systemd-unidir in autotools # If set to "", the value is taken from the running systemd instance. -option('systemd-unitdir', type : 'string', value: '', - description : 'systemd system unit directory') +option('systemd-unitdir', type: 'string', value: '', + description: 'systemd system unit directory') # was --{disable,enable}-liburing in autotools option('io-uring-event-loop', type: 'boolean', value: false, @@ -107,28 +107,28 @@ option('usernet-config-path', type: 'string', value: 'lxc/lxc-usernet', option('usernet-db-path', type: 'string', value: 'lxc/nics', description: 'User network database file path') -option('oss-fuzz', type : 'boolean', value : false, - description : 'build against oss-fuzz') +option('oss-fuzz', type: 'boolean', value: false, + description: 'build against oss-fuzz') # was --{disable,enable}-thread-safety in autotools -option('thread-safety', type : 'boolean', value : true, - description : 'whether the build fails when thread-safe logging cannot be guaranteed') +option('thread-safety', type: 'boolean', value: true, + description: 'whether the build fails when thread-safe logging cannot be guaranteed') # was --{disable,enable}-memfd-rexec in autotools -option('memfd-rexec', type : 'boolean', value : true, - description : 'whether to rexec the lxc-attach binary when attaching to a container') +option('memfd-rexec', type: 'boolean', value: true, + description: 'whether to rexec the lxc-attach binary when attaching to a container') -option('distrosysconfdir', type : 'string', value: '', +option('distrosysconfdir', type: 'string', value: '', description: 'relative path to sysconfdir for distro default configuration') option('dbus', type: 'boolean', value: true, description: 'use dbus') -option('specfile', type : 'boolean', value: true, +option('specfile', type: 'boolean', value: true, description: 'whether to prepare RPM spec') -option('install-init-files', type : 'boolean', value: true, +option('install-init-files', type: 'boolean', value: true, description: 'whether to install init files for local init (e.g. systemd units)') -option('install-state-dirs', type : 'boolean', value: true, +option('install-state-dirs', type: 'boolean', value: true, description: 'whether to create state directories on install') -- 2.47.2