summaryrefslogtreecommitdiff
path: root/dispatcher
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 /dispatcher
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 'dispatcher')
-rw-r--r--dispatcher/meson.build1
1 files changed, 0 insertions, 1 deletions
diff --git a/dispatcher/meson.build b/dispatcher/meson.build
index da9ac7f292..0706ab07a2 100644
--- a/dispatcher/meson.build
+++ b/dispatcher/meson.build
@@ -13,7 +13,6 @@ service = 'org.freedesktop.nm_dispatcher.service'
configure_file(
input: service + '.in',
output: service,
- install: true,
install_dir: dbus_sys_dir,
configuration: service_conf,
)