mirror of https://github.com/rust-lang/rust.git
docs: work around texi2dvi bug. (#1134)
This commit is contained in:
parent
1087f4b7b0
commit
39e0009190
|
@ -12,7 +12,10 @@ doc/version.texi: $(MKFILES) rust.texi
|
|||
|
||||
doc/%.pdf: %.texi doc/version.texi
|
||||
@$(call E, texi2pdf: $@)
|
||||
$(Q)texi2pdf --silent --batch -I doc -o $@ --clean $<
|
||||
@# LC_COLLATE=C works around a bug in texi2dvi; see
|
||||
@# https://bugzilla.redhat.com/show_bug.cgi?id=583011 and
|
||||
@# https://github.com/graydon/rust/issues/1134
|
||||
$(Q)LC_COLLATE=C texi2pdf --silent --batch -I doc -o $@ --clean $<
|
||||
|
||||
doc/%.html: %.texi doc/version.texi
|
||||
@$(call E, makeinfo: $@)
|
||||
|
|
Loading…
Reference in New Issue