summaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2018-04-11 09:32:41 +0200
committerIñigo Martínez <inigomartinez@gmail.com>2018-08-11 22:56:33 +0200
commit53099b79fcdc90e62513d98ece28a40c01daa676 (patch)
tree3f1471cf2836df175581704758b505138713aa09 /client
parentdcafaf7babf35c56ce1f2b84bf17b4e04795515a (diff)
downloaddconf-53099b79fcdc90e62513d98ece28a40c01daa676.tar.gz
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}`.
Diffstat (limited to 'client')
-rw-r--r--client/meson.build2
1 files changed, 1 insertions, 1 deletions
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')