mirror of
https://git.proxmox.com/git/mirror_lxc
synced 2025-08-09 14:40:07 +00:00
meson: Fix template installation location
Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
This commit is contained in:
parent
a15711569e
commit
46b9598f1a
@ -3,8 +3,9 @@
|
|||||||
template_scripts = configure_file(
|
template_scripts = configure_file(
|
||||||
configuration: dummy_config_data,
|
configuration: dummy_config_data,
|
||||||
input: 'lxc-busybox.in',
|
input: 'lxc-busybox.in',
|
||||||
output: 'lxc-busybox')
|
output: 'lxc-busybox',
|
||||||
install_data(join_paths(project_build_root, 'templates/lxc-busybox'), install_dir: lxctemplatedir)
|
install: true,
|
||||||
|
install_dir: lxctemplatedir)
|
||||||
|
|
||||||
template_config_data = configuration_data()
|
template_config_data = configuration_data()
|
||||||
template_config_data.set_quoted('LXCHOOKDIR', lxchookdir)
|
template_config_data.set_quoted('LXCHOOKDIR', lxchookdir)
|
||||||
@ -15,17 +16,20 @@ template_config_data.set_quoted('PACKAGE_VERSION', meson.project_version())
|
|||||||
template_scripts = configure_file(
|
template_scripts = configure_file(
|
||||||
configuration: template_config_data,
|
configuration: template_config_data,
|
||||||
input: 'lxc-download.in',
|
input: 'lxc-download.in',
|
||||||
output: 'lxc-download')
|
output: 'lxc-download',
|
||||||
install_data(join_paths(project_build_root, 'templates/lxc-download'), install_dir: lxchookdir)
|
install: true,
|
||||||
|
install_dir: lxctemplatedir)
|
||||||
|
|
||||||
template_scripts = configure_file(
|
template_scripts = configure_file(
|
||||||
configuration: template_config_data,
|
configuration: template_config_data,
|
||||||
input: 'lxc-local.in',
|
input: 'lxc-local.in',
|
||||||
output: 'lxc-local')
|
output: 'lxc-local',
|
||||||
install_data(join_paths(project_build_root, 'templates/lxc-local'), install_dir: lxchookdir)
|
install: true,
|
||||||
|
install_dir: lxctemplatedir)
|
||||||
|
|
||||||
template_scripts = configure_file(
|
template_scripts = configure_file(
|
||||||
configuration: template_config_data,
|
configuration: template_config_data,
|
||||||
input: 'lxc-oci.in',
|
input: 'lxc-oci.in',
|
||||||
output: 'lxc-oci')
|
output: 'lxc-oci',
|
||||||
install_data(join_paths(project_build_root, 'templates/lxc-oci'), install_dir: lxchookdir)
|
install: true,
|
||||||
|
install_dir: lxctemplatedir)
|
||||||
|
Loading…
Reference in New Issue
Block a user