summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorLaurent Bigonville <bigon@bigon.be>2018-10-15 10:37:42 +0200
committerLaurent Bigonville <bigon@bigon.be>2018-10-15 12:53:11 +0200
commit91118d84995c9b13f1a30b63ed3ece017dd8b04a (patch)
treefb0e84f854c37658c7d650e81eb0428119f1e90e /data
parent4138a5e337b02a659152295de7bc00b5cbd99277 (diff)
downloadgeoclue-91118d84995c9b13f1a30b63ed3ece017dd8b04a.tar.gz
build: Set absolute path of libexecdir
get_option('libexecdir') contains the path to libexecdir WITHOUT the prefix, we need to prepend the correct prefix to the expanded path is correct
Diffstat (limited to 'data')
-rw-r--r--data/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/meson.build b/data/meson.build
index 3fdba43..b5b48cc 100644
--- a/data/meson.build
+++ b/data/meson.build
@@ -14,7 +14,7 @@ if get_option('enable-backend')
install_dir: conf_dir)
conf = configuration_data()
- conf.set('libexecdir', get_option('libexecdir'))
+ conf.set('libexecdir', join_paths(get_option('prefix'), get_option('libexecdir')))
conf.set('dbus_srv_user', get_option('dbus-srv-user'))
service_dir = get_option('datadir') + '/dbus-1/system-services'