diff options
author | Dylan Baker <[email protected]> | 2019-05-31 16:13:11 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2019-09-10 20:36:47 +0000 |
commit | a1a870319951f49c4169040e5efb3d550c6882f0 (patch) | |
tree | 9b5617dd06e0787dbed0791a89c3e78e0f6d68f1 /src/util | |
parent | 26961e2cb5e20a1d56915d903f8f03391b4fd109 (diff) |
meson: don't try to generate i18n translations on windows
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/xmlpool/meson.build | 6 |
1 files 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 |