You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
959 B
26 lines
959 B
From 91a1a39d75e2e810e9f78014aa8541bb08c24c4a Mon Sep 17 00:00:00 2001
|
|
From: Sergey Cherevko <s.cherevko@msvsphere-os.ru>
|
|
Date: Thu, 11 Jan 2024 14:39:20 +0300
|
|
Subject: [PATCH] fixed the translation paths for Meson build system
|
|
|
|
---
|
|
meson.build | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
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('.')
|
|
|
|
--
|
|
2.39.3
|
|
|