diff options
author | rbuj <[email protected]> | 2021-02-18 10:59:50 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-02-24 16:05:39 +0100 |
commit | d105267f775b4371a670f016c9fbce7e81b2632a (patch) | |
tree | d3085f4d43d7fdcb41d80636404ac15720388ce3 /Makefile.am | |
parent | 036594c5542272f719994a62a4663fce998e26f2 (diff) | |
download | mate-session-manager-d105267f775b4371a670f016c9fbce7e81b2632a.tar.bz2 mate-session-manager-d105267f775b4371a670f016c9fbce7e81b2632a.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 6d82efc..8083bc5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,9 @@ +if USE_NLS +PO_SUBDIR = po +endif + SUBDIRS = \ - po \ + $(PO_SUBDIR) \ mate-submodules \ mate-session \ capplet \ |