1
0
mirror of https://github.com/systemd/systemd synced 2024-07-09 04:26:06 +00:00

Merge pull request #29928 from yuwata/meson-default-network

meson: follow-ups for -Ddefault-network=
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2023-11-14 17:33:03 +01:00 committed by GitHub
commit 6f4e496685
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -130,7 +130,7 @@ option('homed', type : 'feature', deprecated : { 'true' : 'enabled', 'false' : '
description : 'install the systemd-homed stack')
option('networkd', type : 'boolean',
description : 'install the systemd-networkd stack')
option('default-network', type : 'boolean', value : true,
option('default-network', type : 'boolean', value : false,
description : 'install default .network files')
option('timedated', type : 'boolean',
description : 'install the systemd-timedated daemon')

View File

@ -22,7 +22,7 @@ if conf.get('ENABLE_NETWORKD') == 1
foreach f : example_network_files
install_data(
f,
rename : fs.replace_suffix(f, ''),
rename : fs.replace_suffix(fs.name(f), ''),
install_dir : networkdir)
endforeach
else