From 27c513cb61a3bc68e877382d63564dafa10712da Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Thu, 23 Nov 2023 21:14:44 +0100 Subject: [PATCH] [meson] muon compatibility muon does not support i18n yet --- meson.build | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 7f58e1bc..4938c170 100644 --- a/meson.build +++ b/meson.build @@ -1028,7 +1028,9 @@ if not conf_data.get('CONFIG_SMALL') testdeps += files('src/util/fastfind.c') endif -subdir('po') +if conf_data.get('CONFIG_NLS') + subdir('po') +endif subdir('src') subdir('contrib') subdir('doc')