forked from containers/toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meson_options.txt
49 lines (42 loc) · 1012 Bytes
/
meson_options.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
option(
'bash_completions',
description: 'Install Bash completion scripts',
type: 'feature',
)
option(
'bash_completions_dir',
description: 'Directory for Bash completion scripts',
type: 'string',
)
option(
'fish_completions',
description: 'Install fish completion scripts',
type: 'feature',
)
option(
'fish_completions_dir',
description: 'Directory for fish completion scripts',
type: 'string',
)
option(
'zsh_completions_dir',
description: 'Directory for Z shell completion scripts (default=$datadir/zsh/site-functions)',
type: 'string',
)
option(
'migration_path_for_coreos_toolbox',
description: 'Offer a migration path to users of github.com/coreos/toolbox',
type: 'boolean',
value: false
)
option(
'profile_dir',
description: 'Directory for profile.d files to be read by the shell on start-up',
type: 'string',
value: '/usr/share/profile.d'
)
option(
'tmpfiles_dir',
description: 'Directory for system-wide tmpfiles.d(5) files',
type: 'string',
)