From 53099b79fcdc90e62513d98ece28a40c01daa676 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1igo=20Mart=C3=ADnez?= Date: Wed, 11 Apr 2018 09:32:41 +0200 Subject: build: Fix pkg-config exec_prefix variable The `exec_prefix` variable in the pkg-config file should point to `prefix` but it is pointing to `libexecdir`. This has been updated to point to `${prefix}`. --- client/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client') diff --git a/client/meson.build b/client/meson.build index 55f1ac0..88492fb 100644 --- a/client/meson.build +++ b/client/meson.build @@ -53,7 +53,7 @@ pkg.generate( filebase: meson.project_name(), subdirs: meson.project_name(), requires: 'gio-2.0 ' + gio_req_version, - variables: 'exec_prefix=' + dconf_libexecdir + variables: 'exec_prefix=${prefix}' ) libdconf_vapi = files(meson.project_name() + '.vapi') -- cgit v1.2.1