The French Handbook build appears to overflow limits in pdftex, at least
when we build using the OpenJade toolchain. Commit the same workaround as was done for the English handbook (roughly the same change as en_US.ISO8859-1/books/handbook/Makefile 1.30->1.31).
This commit is contained in:
parent
4ad2595472
commit
d3f1d6f9d3
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=12223
1 changed files with 13 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
#
|
||||
# Compilation du Manuel de Reference de FreeBSD
|
||||
#
|
||||
# $FreeBSD: doc/fr_FR.ISO8859-1/books/handbook/Makefile,v 1.3 2001/06/21 03:38:28 chris Exp $
|
||||
# $FreeBSD$
|
||||
# Original revision: 1.25
|
||||
#
|
||||
|
||||
|
@ -61,5 +61,17 @@ SRCS+= ports/chapter.sgml
|
|||
# Entities
|
||||
SRCS+= chapters.ent
|
||||
|
||||
# XXX The Handbook build currently overflows some internal, hardcoded
|
||||
# limits in pdftex. Until we split the Handbook up, build the PDF
|
||||
# version using ps2pdf instead of pdftex.
|
||||
|
||||
PS2PDF?= ${PREFIX}/bin/ps2pdf
|
||||
|
||||
book.tex-pdf:
|
||||
${TOUCH} book.tex-pdf
|
||||
|
||||
book.pdf: book.ps
|
||||
${PS2PDF} book.ps book.pdf
|
||||
|
||||
DOC_PREFIX?= ${.CURDIR}/../../..
|
||||
.include "${DOC_PREFIX}/share/mk/doc.project.mk"
|
||||
|
|
Loading…
Reference in a new issue