diff options
author | Peter Eisentraut | 2016-11-04 16:00:00 +0000 |
---|---|---|
committer | Peter Eisentraut | 2016-11-05 02:50:43 +0000 |
commit | d49cc588ca589cd378b5862fa5704eaade4a1380 (patch) | |
tree | 433bcfe37e380de33737a22b0a155007b2ce8d90 | |
parent | 6feb69f6cef8b1bd2829700e25e402f22e86f3bd (diff) |
doc: Don't reformat .fo files before processing by fop
This messes up the whitespace in the output PDF document in some places.
-rw-r--r-- | doc/src/sgml/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/doc/src/sgml/Makefile b/doc/src/sgml/Makefile index 5df2f04dd6..84c94e8ae0 100644 --- a/doc/src/sgml/Makefile +++ b/doc/src/sgml/Makefile @@ -270,20 +270,16 @@ htmlhelp: stylesheet-hh.xsl postgres.xml $(XMLLINT) --noout --valid postgres.xml $(XSLTPROC) $(XSLTPROCFLAGS) $^ -%-A4.fo.tmp: stylesheet-fo.xsl %.xml +%-A4.fo: stylesheet-fo.xsl %.xml $(XMLLINT) --noout --valid $*.xml $(XSLTPROC) $(XSLTPROCFLAGS) --stringparam paper.type A4 -o $@ $^ -%-US.fo.tmp: stylesheet-fo.xsl %.xml +%-US.fo: stylesheet-fo.xsl %.xml $(XMLLINT) --noout --valid $*.xml $(XSLTPROC) $(XSLTPROCFLAGS) --stringparam paper.type USletter -o $@ $^ FOP = fop -# reformat FO output so that locations of errors are easier to find -%.fo: %.fo.tmp - $(XMLLINT) --format --output $@ $^ - .SECONDARY: postgres-A4.fo postgres-US.fo %-fop.pdf: %.fo @@ -404,7 +400,7 @@ clean: # index rm -f HTML.index $(GENERATED_SGML) # XSLT - rm -f postgres.xml postgres.xmltmp htmlhelp.hhp toc.hhc index.hhk *.fo *.fo.tmp + rm -f postgres.xml postgres.xmltmp htmlhelp.hhp toc.hhc index.hhk *.fo # EPUB rm -f postgres.epub # Texinfo |