1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

Change delimiter of substitution that uses MANLANG from .' to %', so

things like `ja_JP.EUC' will work.

Suggested by:	max
This commit is contained in:
Satoshi Asami 1996-12-12 04:32:25 +00:00
parent 1cbd63fd0e
commit 90ce082cc8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=4949

View File

@ -6,7 +6,7 @@
# bsd.port.mk - 940820 Jordan K. Hubbard.
# This file is in the public domain.
#
# $Id: bsd.port.mk,v 1.236 1996/12/11 04:51:31 asami Exp $
# $Id: bsd.port.mk,v 1.237 1996/12/11 10:17:44 asami Exp $
#
# Please view me with 4 column tabs!
@ -553,16 +553,16 @@ MANLANG?= "" # english only by default
.for sect in 1 2 3 4 5 6 7 8 9
.if defined(MAN${sect})
_MANPAGES+= ${MAN${sect}:S.^.${MAN${sect}PREFIX}/man/${lang}/man${sect}/.}
_MANPAGES+= ${MAN${sect}:S%^%${MAN${sect}PREFIX}/man/${lang}/man${sect}/%}
.endif
.endfor
.if defined(MANL)
_MANPAGES+= ${MANL:S.^.${MANLPREFIX}/man/${lang}/manl/.}
_MANPAGES+= ${MANL:S%^%${MANLPREFIX}/man/${lang}/manl/%}
.endif
.if defined(MANN)
_MANPAGES+= ${MANN:S.^.${MANNPREFIX}/man/${lang}/mann/.}
_MANPAGES+= ${MANN:S%^%${MANNPREFIX}/man/${lang}/mann/%}
.endif
.endfor