diff options
author | rbuj <[email protected]> | 2021-02-07 21:49:22 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-02-08 21:23:34 +0100 |
commit | a8d98cb5572363804ffabd771055959826b32f99 (patch) | |
tree | a571b63a981e000fddb80ceac1013cee91bfec66 /Makefile.am | |
parent | 546660e4c8668f6f94c5d672499d253f70e4fa78 (diff) | |
download | caja-extensions-a8d98cb5572363804ffabd771055959826b32f99.tar.bz2 caja-extensions-a8d98cb5572363804ffabd771055959826b32f99.tar.xz |
build: allow users to disable gettext support (--disable-nls)
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 983d77c..4cc1155 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,10 @@ ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS} -SUBDIRS = po +SUBDIRS = + +if USE_NLS +SUBDIRS += po +endif if ENABLE_OPEN_TERMINAL SUBDIRS += open-terminal |