summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorBeniamino Galvani <bgalvani@redhat.com>2019-08-02 11:59:24 +0200
committerBeniamino Galvani <bgalvani@redhat.com>2019-08-05 16:05:30 +0200
commit7c2317a55765f17f6d4213c663728252e0d631af (patch)
treec96d739269c1c400eb6549d46f54f83f77ca16cb /data
parent91b9b08e333bb9bb639803bc133fa2d7e48f3ba0 (diff)
downloadNetworkManager-7c2317a55765f17f6d4213c663728252e0d631af.tar.gz
build: fix meson warning about 'install' arg in 'configure_file'
WARNING: Project targetting '>= 0.44.0' but tried to use feature introduced in '0.50.0': install arg in configure_file From the documentation: "install (added 0.50.0) When true, this generated file is installed during the install step, and install_dir must be set and not empty. When false, this generated file is not installed regardless of the value of install_dir. When omitted it defaults to true when install_dir is set and not empty, false otherwise." The parameter can be omitted because install_dir is set. https://gitlab.freedesktop.org/NetworkManager/NetworkManager/issues/216
Diffstat (limited to 'data')
-rw-r--r--data/meson.build2
1 files changed, 0 insertions, 2 deletions
diff --git a/data/meson.build b/data/meson.build
index f496bf0135..9025eae452 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -11,7 +11,6 @@ server = 'server.conf'
configure_file(
input: server + '.in',
output: server,
- install: true,
install_dir: join_paths(nm_datadir, 'doc', nm_name, 'examples'),
configuration: data_conf,
)
@@ -32,7 +31,6 @@ if install_systemd_unit_dir
configure_file(
input: service + '.in',
output: service,
- install: true,
install_dir: systemd_system_unit_dir,
configuration: data_conf,
)