]> git.proxmox.com Git - mirror_lxcfs.git/blame - share/meson.build
lxc.mount.hook: Skip cpu sysfs logic if missing target
[mirror_lxcfs.git] / share / meson.build
CommitLineData
d90ab57e
CB
1# SPDX-License-Identifier: LGPL-2.1-or-later
2
e5af758b 3lxcfs_conf_data = custom_target(
3c34a198
SG
4 '00-lxcfs.conf',
5 input: '00-lxcfs.conf.in',
6 output: '00-lxcfs.conf',
7 command: [
8 meson_render_jinja2,
9 config_h,
10 '@INPUT@',
11 '@OUTPUT@',
12 ],
13 install: true,
14 install_dir: lxcconfdir)
d90ab57e 15
e5af758b 16lxcfs_hook_mount_data = custom_target(
3c34a198
SG
17 'lxc.mount.hook',
18 input: 'lxc.mount.hook.in',
19 output: 'lxc.mount.hook',
20 command: [
21 meson_render_jinja2,
22 config_h,
23 '@INPUT@',
24 '@OUTPUT@',
25 ],
26 install: true,
27 install_dir: lxcfssharedir)
d90ab57e 28
e5af758b 29lxcfs_hook_reboot_data = custom_target(
3c34a198
SG
30 'lxc.reboot.hook',
31 input: 'lxc.reboot.hook.in',
32 output: 'lxc.reboot.hook',
33 command: [
34 meson_render_jinja2,
35 config_h,
36 '@INPUT@',
37 '@OUTPUT@',
38 ],
39 install: true,
40 install_dir: lxcfssharedir)