Blame SOURCES/build-Fix-setting-GNOMELOCALEDIR.patch
|
|
74d7a8 |
From 884fb555173c46fcb4a80a5cc9cbd32bad8186ba Mon Sep 17 00:00:00 2001
|
|
|
74d7a8 |
From: =?UTF-8?q?Piotr=20Dr=C4=85g?= <piotrdrag@gmail.com>
|
|
|
74d7a8 |
Date: Fri, 16 Mar 2018 19:57:53 +0100
|
|
|
74d7a8 |
Subject: [PATCH] build: Fix setting GNOMELOCALEDIR
|
|
|
74d7a8 |
|
|
|
74d7a8 |
https://bugzilla.gnome.org/show_bug.cgi?id=794381
|
|
|
74d7a8 |
---
|
|
|
74d7a8 |
meson.build | 2 +-
|
|
|
74d7a8 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
74d7a8 |
|
|
|
74d7a8 |
diff --git a/meson.build b/meson.build
|
|
|
74d7a8 |
index 30d996d..ad1b1d3 100644
|
|
|
74d7a8 |
--- a/meson.build
|
|
|
74d7a8 |
+++ b/meson.build
|
|
|
74d7a8 |
@@ -23,7 +23,7 @@ conf.set_quoted('PACKAGE_NAME', meson.project_name())
|
|
|
74d7a8 |
conf.set_quoted('PACKAGE_VERSION', meson.project_version())
|
|
|
74d7a8 |
conf.set_quoted('VERSION', meson.project_version())
|
|
|
74d7a8 |
conf.set_quoted('GETTEXT_PACKAGE', meson.project_name())
|
|
|
74d7a8 |
-conf.set_quoted('GNOMELOCALEDIR', join_paths(get_option('prefix'), get_option('datadir'), '/locale'))
|
|
|
74d7a8 |
+conf.set_quoted('GNOMELOCALEDIR', join_paths(get_option('prefix'), get_option('localedir')))
|
|
|
74d7a8 |
configure_file(output: 'config.h', configuration: conf)
|
|
|
74d7a8 |
config_h_dir = include_directories('.')
|
|
|
74d7a8 |
|
|
|
74d7a8 |
--
|
|
|
74d7a8 |
2.17.0
|
|
|
74d7a8 |
|