mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
daemon: simplify configuration file generation
We convert from conf.in to conf, let's make this hardcoded so we stick to the same scheme everywhere.
This commit is contained in:
parent
7cecb1567d
commit
08525e865d
1 changed files with 7 additions and 7 deletions
|
|
@ -25,16 +25,16 @@ conf_config_uninstalled.set('comment', '')
|
||||||
|
|
||||||
|
|
||||||
conf_files = [
|
conf_files = [
|
||||||
[ 'pipewire.conf.in', 'pipewire.conf' ],
|
'pipewire.conf',
|
||||||
[ 'client.conf.in', 'client.conf' ],
|
'client.conf',
|
||||||
[ 'client-rt.conf.in', 'client-rt.conf' ],
|
'client-rt.conf',
|
||||||
[ 'jack.conf.in', 'jack.conf' ],
|
'jack.conf',
|
||||||
[ 'pipewire-pulse.conf.in', 'pipewire-pulse.conf' ]
|
'pipewire-pulse.conf',
|
||||||
]
|
]
|
||||||
|
|
||||||
foreach c : conf_files
|
foreach c : conf_files
|
||||||
configure_file(input : c.get(0),
|
configure_file(input : '@0@.in'.format(c),
|
||||||
output : c.get(1),
|
output : c,
|
||||||
configuration : conf_config,
|
configuration : conf_config,
|
||||||
install_dir : pipewire_confdatadir)
|
install_dir : pipewire_confdatadir)
|
||||||
endforeach
|
endforeach
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue