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:
Bruce A. Mah 2002-02-17 07:34:06 +00:00
parent 4ad2595472
commit d3f1d6f9d3
Notes: svn2git 2020-12-08 03:00:23 +00:00
svn path=/head/; revision=12223

View file

@ -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"