libvirt/src/interface/meson.build
Andrea Bolognani 7627c96cdb meson: Add missing virt_install_dirs
We recently started listing these in the spec file and, since we
were not creating them during the installation phase, that broke
RPM builds.

Fixes: 4b43da0bff9b78dcf1189388d4c89e524238b41d
Signed-off-by: Andrea Bolognani <abologna@redhat.com>
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
2022-02-02 16:26:36 +01:00

62 lines
1.3 KiB
Meson

interface_driver_sources = [
'interface_driver.c',
]
if conf.has('WITH_NETCF')
interface_driver_sources += 'interface_backend_netcf.c'
endif
if conf.has('WITH_UDEV')
interface_driver_sources += 'interface_backend_udev.c'
endif
driver_source_files += files(interface_driver_sources)
stateful_driver_source_files += files(interface_driver_sources)
if conf.has('WITH_INTERFACE')
virt_modules += {
'name': 'virt_driver_interface',
'sources': [
files(interface_driver_sources),
],
'deps': [
access_dep,
libnl_dep,
netcf_dep,
udev_dep,
],
'link_args': [
libvirt_no_undefined,
],
}
virt_daemons += {
'name': 'virtinterfaced',
'c_args': [
'-DDAEMON_NAME="virtinterfaced"',
'-DMODULE_NAME="interface"',
],
}
virt_daemon_confs += {
'name': 'virtinterfaced',
}
virt_daemon_units += {
'service': 'virtinterfaced',
'service_in': files('virtinterfaced.service.in'),
'name': 'Libvirt interface',
'sockprefix': 'virtinterfaced',
'sockets': [ 'main', 'ro', 'admin' ],
}
openrc_init_files += {
'name': 'virtinterfaced',
'in_file': files('virtinterfaced.init.in')
}
virt_install_dirs += [
runstatedir / 'libvirt' / 'interface',
]
endif