Skip to content

Commit e279952

Browse files
committed
Change Texinfo output to UTF-8
Since the whole documentation tool chain is now UTF-8 and there is an increasing number of non-ISO-8859-1 characters in the text, keeping the Texinfo output in ISO 8859-1 just creates unnecessary complications. Depending on the platform, there are conversion failures and thus build failures, or weirdly converted characters. By changing the output to UTF-8, the whole encoding conversion business is sidestepped.
1 parent 8f72bec commit e279952

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/sgml/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ MAKEINFO = makeinfo
201201
$(DB2X_XSLTPROC) -s texi -g output-file=$(basename $@) $< -o $@
202202

203203
%.texi: %.texixml
204-
$(DB2X_TEXIXML) --encoding=iso-8859-1//TRANSLIT $< --to-stdout > $@
204+
$(DB2X_TEXIXML) --encoding=utf-8 $< --to-stdout > $@
205205

206206
%.info: %.texi
207207
$(MAKEINFO) --enable-encoding --no-split --no-validate $< -o $@

0 commit comments

Comments
 (0)