summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Drąg <piotrdrag@gmail.com>2018-03-16 19:57:53 +0100
committerStefano Facchini <stefano.facchini@gmail.com>2018-03-17 09:54:27 +0100
commit884fb555173c46fcb4a80a5cc9cbd32bad8186ba (patch)
tree6cb9107a55c1d782afb3c2ce80ec5c877de79261
parent45e6d799df0b6914342c6d9ce90a79539729bad4 (diff)
downloadbaobab-884fb555173c46fcb4a80a5cc9cbd32bad8186ba.tar.gz
build: Fix setting GNOMELOCALEDIR
https://bugzilla.gnome.org/show_bug.cgi?id=794381
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 30d996d..ad1b1d3 100644
--- a/meson.build
+++ b/meson.build
@@ -23,7 +23,7 @@ conf.set_quoted('PACKAGE_NAME', meson.project_name())
conf.set_quoted('PACKAGE_VERSION', meson.project_version())
conf.set_quoted('VERSION', meson.project_version())
conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
-conf.set_quoted('GNOMELOCALEDIR', join_paths(get_option('prefix'), get_option('datadir'), '/locale'))
+conf.set_quoted('GNOMELOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
configure_file(output: 'config.h', configuration: conf)
config_h_dir = include_directories('.')