From 39c89113536d59e399f62f6e0bc6a2c31f129c0e Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sat, 22 Aug 2026 19:26:43 +0900 Subject: [PATCH] meson: Correct GETTEXT_PACKAGE --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 31c33532..ec722aec 100644 --- a/meson.build +++ b/meson.build @@ -39,7 +39,7 @@ endif config_data = configuration_data() config_data.set_quoted('LOCALEDIR', prefix / get_option('localedir')) -config_data.set_quoted('GETTEXT_PACKAGE', meson.project_name() + '-indicator') +config_data.set_quoted('GETTEXT_PACKAGE', gettext_name) config_file = configure_file( input: 'src/Config.vala.in', output: '@BASENAME@',