diff options
author | rbuj <[email protected]> | 2021-01-27 18:03:29 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-02-08 20:39:25 +0100 |
commit | 5af31646583faedf3d16746f19e4d7d679852ac4 (patch) | |
tree | fd63bcbdb1a45bc8dbe08ce4c772eaea0c6e49f8 /logview/help | |
parent | 1397f530214fe111405d98687d4b50b4ad23da45 (diff) | |
download | mate-utils-5af31646583faedf3d16746f19e4d7d679852ac4.tar.bz2 mate-utils-5af31646583faedf3d16746f19e4d7d679852ac4.tar.xz |
build: allow users to disable gettext support (--disable-nls)
Diffstat (limited to 'logview/help')
-rw-r--r-- | logview/help/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/logview/help/Makefile.am b/logview/help/Makefile.am index eb43152c..cf2b54b7 100644 --- a/logview/help/Makefile.am +++ b/logview/help/Makefile.am @@ -20,10 +20,14 @@ HELP_FILES = index.docbook legal.xml HELP_MEDIA = \ figures/syslog_window.png +if USE_NLS # Add linguas to be ignored, e.g. IGNORE_HELP_LINGUAS = ca de es fr IGNORE_HELP_LINGUAS = HELP_LINGUAS = $(if $(IGNORE_HELP_LINGUAS), \ $(filter-out $(IGNORE_HELP_LINGUAS),$(subst /,,$(dir $(wildcard */*.po)))), \ $(subst /,,$(dir $(wildcard */*.po))) ) +else +HELP_LINGUAS = +endif -include $(top_srcdir)/git.mk |