From b3b7dafe91bc3e44eeada5cea91a0fd26587e609 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Sat, 30 Apr 2016 22:19:59 -0400 Subject: [PATCH] Use texi2dvi --clean to work around a bug in texi2dvi If the sources for e2fsprogs are located in a pathname that contains a tilde character (which can happen when the sources are unpacked using "apt-get source" when e2fsprogs has a pre-release test version), texi2dvi will fail due to a bug (Debian bug #822492: "texinfo: texi2dvi doesn't protect the ~ character in the second pass"). Work around this bug by using texi2dvi --clean. Addresses-Debian-Bug: #822227 Reported-by: svante.signell@gmail.com Signed-off-by: Theodore Ts'o --- doc/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile.in b/doc/Makefile.in index a2b26123..9cb584c6 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -11,7 +11,7 @@ INSTALL = @INSTALL@ @MCONFIG@ -DVI=texi2dvi +DVI=texi2dvi --clean DVIPS=dvips -o "$@" INFO=@MAKEINFO@ HTML=makeinfo --html --no-split