]> git.ipfire.org Git - thirdparty/systemd.git/blob - network/meson.build
Fix spelling errors found by Lintian
[thirdparty/systemd.git] / network / meson.build
1 # SPDX-License-Identifier: LGPL-2.1-or-later
2
3 if conf.get('ENABLE_NETWORKD') == 1
4 install_data(
5 '80-6rd-tunnel.network',
6 '80-6rd-tunnel.link',
7 '80-container-host0.network',
8 '80-container-vb.network',
9 '80-container-vb.link',
10 '80-container-ve.network',
11 '80-container-ve.link',
12 '80-container-vz.network',
13 '80-container-vz.link',
14 '80-namespace-ns.network',
15 '80-namespace-ns.link',
16 '80-vm-vt.network',
17 '80-vm-vt.link',
18 '80-wifi-adhoc.network',
19 install_dir : networkdir)
20
21 example_network_files = files(
22 '80-auto-link-local.network.example',
23 '89-ethernet.network.example',
24 '80-wifi-ap.network.example',
25 '80-wifi-station.network.example',
26 )
27
28 install_data(
29 example_network_files,
30 install_dir : networkdir)
31
32 if get_option('default-network')
33 foreach f : example_network_files
34 install_data(
35 f,
36 rename : fs.replace_suffix(fs.name(f), ''),
37 install_dir : networkdir)
38 endforeach
39 endif
40 endif
41
42 install_data('99-default.link',
43 install_dir : networkdir)
44
45 if install_sysconfdir
46 install_emptydir(sysconfdir / 'systemd/network')
47 endif