diff options
author | phantom <phantom@FreeBSD.org> | 2005-02-27 18:09:52 +0000 |
---|---|---|
committer | phantom <phantom@FreeBSD.org> | 2005-02-27 18:09:52 +0000 |
commit | 9b22b29def5d8dcb215faf5d8697f91891b328e9 (patch) | |
tree | e62138505b17b83828f894425b68b6373cd73d5f /lib/libc | |
parent | ec10d7e1e383d32f8428052a8a8bbc428d7c7590 (diff) | |
download | FreeBSD-src-9b22b29def5d8dcb215faf5d8697f91891b328e9.zip FreeBSD-src-9b22b29def5d8dcb215faf5d8697f91891b328e9.tar.gz |
Enable processing of NLS catalogs while building/installing of libc
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/nls/Makefile.inc | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/libc/nls/Makefile.inc b/lib/libc/nls/Makefile.inc index 9adab3d..26e9f9a 100644 --- a/lib/libc/nls/Makefile.inc +++ b/lib/libc/nls/Makefile.inc @@ -6,3 +6,14 @@ SRCS+= msgcat.c MAN+= catclose.3 catgets.3 catopen.3 + +# NOTE: C.msg should not be processed here, it's using as template +# for translators. + +NLSNAME= libc +NLS+= ru_RU.KOI8-R + +NLSSRCDIR= ${.CURDIR}/nls +.for lang in ${NLS} +NLSSRCFILES_${lang}=${lang}.msg +.endfor |