mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-02 09:01:46 -05:00
meson: Add udevrulesdir option
Signed-off-by: Arnaud Rebillout <arnaud.rebillout@collabora.com>
This commit is contained in:
parent
fdf3384f24
commit
8f336ede12
2 changed files with 8 additions and 0 deletions
|
|
@ -69,6 +69,11 @@ endif
|
||||||
systemduserunitdir = get_option('systemduserunitdir')
|
systemduserunitdir = get_option('systemduserunitdir')
|
||||||
# the default value is set below
|
# the default value is set below
|
||||||
|
|
||||||
|
udevrulesdir = get_option('udevrulesdir')
|
||||||
|
if udevrulesdir == ''
|
||||||
|
udevrulesdir = join_paths('lib', 'udev', 'rules.d')
|
||||||
|
endif
|
||||||
|
|
||||||
vapidir = join_paths(datadir, 'vala', 'vapi')
|
vapidir = join_paths(datadir, 'vala', 'vapi')
|
||||||
|
|
||||||
bashcompletiondir = get_option('bashcompletiondir')
|
bashcompletiondir = get_option('bashcompletiondir')
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,9 @@ option('modlibexecdir',
|
||||||
option('systemduserunitdir',
|
option('systemduserunitdir',
|
||||||
type : 'string',
|
type : 'string',
|
||||||
description : 'Directory for systemd user service files')
|
description : 'Directory for systemd user service files')
|
||||||
|
option('udevrulesdir',
|
||||||
|
type : 'string',
|
||||||
|
description : 'Directory for udev rules (defaults to /lib/udev/rules.d)')
|
||||||
option('bashcompletiondir',
|
option('bashcompletiondir',
|
||||||
type : 'string',
|
type : 'string',
|
||||||
description : 'Directory for bash completion files')
|
description : 'Directory for bash completion files')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue