When I run "make distcheck", there are two test failures: FAIL: t/init_files_tests.t 44 - customize_translations converted file_html FAIL: t/init_files_tests.t 66 - customize_special_element converted file_html
These tests pass usually when I just run "make check". I found that the files were not translated properly: $ diff ../../../tp/t/results/init_files_tests/customize_translations/res_html/Chapter-de.html t/results/init_files_tests/customize_translations/out_html/Chapter-de.html 27c27 < Nächster Knoten: <a href="Last-chapter.html" accesskey="n" rel="next">Last Chapter</a>, Previous: <a href="Chapter-fr.html#Chapter-fr" accesskey="p" rel="prev">chap fr</a>, Up: <a href="index.html" accesskey="u" rel="up">top</a> [<a href="index.html#SEC_Contents" title="Das Inhaltsverzeichnis" rel="contents">Contents</a>] [<a href="Last-chapter.html" title="Next section in reading order" accesskey="n" rel="next">Nach vorne ⇒</a>]</p> --- > Next: <a href="Last-chapter.html" accesskey="n" rel="next">Last Chapter</a>, > Previous: <a href="Chapter-fr.html#Chapter-fr" accesskey="p" rel="prev">chap > fr</a>, Up: <a href="index.html" accesskey="u" rel="up">top</a> [<a > href="index.html#SEC_Contents" title="Table of contents" > rel="contents">Contents</a>]</p> 31c31 < <p>Fehler-->. --- > <p>error→. 37c37 < Nächster Knoten: <a href="Last-chapter.html" accesskey="n" rel="next">Last Chapter</a>, Previous: <a href="Chapter-fr.html#Chapter-fr" accesskey="p" rel="prev">chap fr</a>, Up: <a href="index.html" accesskey="u" rel="up">top</a> [<a href="index.html#SEC_Contents" title="Das Inhaltsverzeichnis" rel="contents">Contents</a>] [<a href="Last-chapter.html" title="Next section in reading order" accesskey="n" rel="next">Nach vorne ⇒</a>]</p> --- > Next: <a href="Last-chapter.html" accesskey="n" rel="next">Last Chapter</a>, > Previous: <a href="Chapter-fr.html#Chapter-fr" accesskey="p" rel="prev">chap > fr</a>, Up: <a href="index.html" accesskey="u" rel="up">top</a> [<a > href="index.html#SEC_Contents" title="Table of contents" > rel="contents">Contents</a>]</p> $ /bin/ls -l t/results/init_files_tests/customize_translations/out_html/ total 24 -rw-rw-r-- 1 g g 1657 Nov 13 19:33 Chapter-de.html -rw-rw-r-- 1 g g 1982 Nov 13 19:33 Chapter-fr.html -rw-rw-r-- 1 g g 1591 Nov 13 19:33 Chapter.html -rw-rw-r-- 1 g g 1786 Nov 13 19:33 index.html -rw-rw-r-- 1 g g 1403 Nov 13 19:33 Last-chapter.html -rw-rw-r-- 1 g g 744 Nov 13 19:33 section-fr.html $ /bin/ls -l ../../../tp/t/results/init_files_tests/customize_translations/res_html/ total 24 -r--r--r-- 1 g g 1936 Nov 13 16:01 Chapter-de.html -r--r--r-- 1 g g 2401 Nov 13 16:01 Chapter-fr.html -r--r--r-- 1 g g 1877 Nov 13 16:01 Chapter.html -r--r--r-- 1 g g 1792 Nov 13 16:01 index.html -r--r--r-- 1 g g 1429 Nov 13 16:01 Last-chapter.html -r--r--r-- 1 g g 744 Nov 13 16:01 section-fr.html I suspect that the translation files are not being found in out-of-source builds. This is a new problem.