Hi, The testsuite fails 2 tests if tex is missing:
make[2]: Entering directory `/home/pkgmgr/tt/texinfo-4.11/util' SKIP: bibtex.test FAIL: dvipdf.test SKIP: latex2html.test FAIL: texi2dvi.test ==================================== 2 of 2 tests failed (2 tests were not run) Please report to [email protected] It should skip those tests if tex is unavilable. Patch below seems to do the trick. Regards Greg diff -Naur texinfo-4.11.orig/util/dvipdf.test texinfo-4.11/util/dvipdf.test --- texinfo-4.11.orig/util/dvipdf.test 2007-07-01 22:28:54.000000000 +0000 +++ texinfo-4.11/util/dvipdf.test 2007-09-18 07:23:13.000000000 +0000 @@ -16,6 +16,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +required='tex' + . ./defs || exit 1 set -e diff -Naur texinfo-4.11.orig/util/texi2dvi.test texinfo-4.11/util/texi2dvi.test --- texinfo-4.11.orig/util/texi2dvi.test 2007-07-29 15:05:15.000000000 +0000 +++ texinfo-4.11/util/texi2dvi.test 2007-09-18 07:23:23.000000000 +0000 @@ -16,6 +16,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. +required='tex' + . ./defs || exit 1 set -e
