Description: fix srcdir for test
 The test target fails because srcdir is set to a relative
 directory. Preferably this would be fixed by passing --with-srcdir to
 configure, but this is ignored. Instead we fix it in Makefile.in in
 the test target by replacing srcdir with ${CURDIR}
Author: Carsten Leonhardt <leo@debian.org>
Last-Update: 2018-09-24
--- a/Makefile.in
+++ b/Makefile.in
@@ -84,7 +84,7 @@
 	touch l2hconf.pm
 
 test: all
-	LATEX2HTMLDIR=${srcdir}; export LATEX2HTMLDIR ; \
+	LATEX2HTMLDIR=${CURDIR}; export LATEX2HTMLDIR ; \
 	latex2html='' ; \
 	for file in latex2html bin/latex2html* bin/${PLAT}/latex2html*; do \
 	  test -s $$file && latex2html=$$file break ; \
