Package: m4 Version: 1.4.3-1 Severity: serious Tags: patch texi2html now generates its output in a subdirectory, which causes m4 to fail to build:
> mv doc/*.html debian/tmp/usr/share/doc/m4-doc > mv: cannot stat `doc/*.html': No such file or directory > make: *** [binary-indep] Error 1 The attached patch fixes this problem. -- Matt
diff -u m4-1.4.3/debian/rules m4-1.4.3/debian/rules
--- m4-1.4.3/debian/rules
+++ m4-1.4.3/debian/rules
@@ -42,7 +42,7 @@
install -m 755 debian/m4-doc.postinst debian/tmp/DEBIAN/postinst
install -m 755 debian/m4-doc.prerm debian/tmp/DEBIAN/prerm
cd doc && texi2html -split_chapter $(package).texinfo
- mv doc/*.html $(docdir)-doc
+ mv doc/m4/*.html $(docdir)-doc
ln -s $(package)_toc.html $(docdir)-doc/index.html
cp -p debian/copyright $(docdir)-doc
cp -p ChangeLog $(docdir)-doc/changelog
signature.asc
Description: Digital signature

