From a1a870319951f49c4169040e5efb3d550c6882f0 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Fri, 31 May 2019 16:13:11 -0700 Subject: [PATCH] meson: don't try to generate i18n translations on windows Reviewed-by: Eric Engestrom --- src/util/xmlpool/meson.build | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/util/xmlpool/meson.build b/src/util/xmlpool/meson.build index 81184fa6b14..d0ecec4937f 100644 --- a/src/util/xmlpool/meson.build +++ b/src/util/xmlpool/meson.build @@ -36,5 +36,7 @@ xmlpool_options_h = custom_target( depend_files : _langs_po_files, ) -i18n = import('i18n') -i18n.gettext('xmlpool', install : false) +if host_machine.system() != 'windows' + i18n = import('i18n') + i18n.gettext('xmlpool', install : false) +endif -- 2.30.2