diff options
Diffstat (limited to 'main/check/do-not-check-for-tex.patch')
-rw-r--r-- | main/check/do-not-check-for-tex.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/main/check/do-not-check-for-tex.patch b/main/check/do-not-check-for-tex.patch new file mode 100644 index 0000000000..50b7b8e9d9 --- /dev/null +++ b/main/check/do-not-check-for-tex.patch @@ -0,0 +1,23 @@ +Starting with check 0.13.0, check incorrectly checks for the tex instead +of the makeinfo command for building documentation. + +See: + + * https://github.com/libcheck/check/issues/206 + * https://github.com/libcheck/check/pull/212 + +Without this change documentation files (the info page and example code) +which were previously installed are no longer installed. + +diff -upr check-0.13.0.orig/configure.ac check-0.13.0/configure.ac +--- check-0.13.0.orig/configure.ac 2019-10-25 17:17:54.361921908 +0200 ++++ check-0.13.0/configure.ac 2019-10-25 17:18:13.101931933 +0200 +@@ -182,7 +182,7 @@ AC_CHECK_PROGS(LCOV, lcov, false) + AC_CHECK_PROGS(GENHTML, genhtml, false) + + if test "xtrue" = x"$enable_build_docs"; then +- AC_CHECK_PROGS(TEX, tex, false) ++ AC_CHECK_PROGS(TEX, makeinfo, false) + if test "$TEX" = "false"; then + # Make it [somewhat] clear to maintainers that tex is missing. Not an error + # though because 'make install' (which users need) does not build the docs |