We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08691ea commit e4c8865Copy full SHA for e4c8865
doc/src/sgml/Makefile
@@ -156,7 +156,9 @@ XSLTPROC_FO_FLAGS += --stringparam img.src.path '$(srcdir)/'
156
$(XSLTPROC) $(XMLINCLUDE) $(XSLTPROCFLAGS) $(XSLTPROC_FO_FLAGS) --stringparam paper.type USletter -o $@ $^
157
158
%.pdf: %.fo $(ALL_IMAGES)
159
- $(FOP) -fo $< -pdf $@
+ LANG=C $(FOP) -fo $< -pdf $@ 2>&1 | \
160
+ awk 'BEGIN { warn = 0 } { print } /not available in font/ { warn = 1 } \
161
+ END { if (warn != 0) print("\nFound characters that cannot be output in the PDF document; see README.non-ASCII") }' 1>&2
162
163
164
##
0 commit comments