From dcafaf7babf35c56ce1f2b84bf17b4e04795515a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1igo=20Mart=C3=ADnez?= Date: Wed, 11 Apr 2018 09:26:37 +0200 Subject: build: Fix parameters order The install parameters should be the last parameters when calling a function. The `configuration` parameter has been moved leaving install parameters at the end. --- service/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'service') diff --git a/service/meson.build b/service/meson.build index 9e79a87..b8c6f03 100644 --- a/service/meson.build +++ b/service/meson.build @@ -6,9 +6,9 @@ service = dconf_namespace + '.service' configure_file( input: service + '.in', output: service, + configuration: service_conf, install: true, - install_dir: dbus_session_service_dir, - configuration: service_conf + install_dir: dbus_session_service_dir ) sources = [ -- cgit v1.2.1