- When <langcode>/share/mk/doc.local.mk exists, it will be included

just after doc.common.mk included.  This can be used for various
  language specific customizations.

- Remove SP_ENCODING_LIST.  Translators should define the SP_ENCODING
  variable directly in their doc.local.mk when it is needed.

Discussed with:	den
This commit is contained in:
Hiroki Sato 2004-08-09 16:22:55 +00:00
parent 17d0719cf6
commit 7462d30d2f
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=21883
2 changed files with 10 additions and 12 deletions

View file

@ -99,6 +99,12 @@ SETENV?= /usr/bin/env
# targets and variables commonly used in doc/ and www/ tree.
.include "doc.common.mk"
DOC_LOCAL_MK= ${DOC_PREFIX}/${LANGCODE}/share/mk/doc.local.mk
.if exists(${DOC_LOCAL_MK})
.include "${DOC_LOCAL_MK}"
.endif
# Ownership information.
.include "doc.install.mk"