From: Theodore Ts'o Date: Fri, 22 Jul 2005 00:32:36 +0000 (-0500) Subject: Fix Debian build rules to reflect changes in texi2html (Debian Bug #317862) X-Git-Tag: E2FSPROGS-1.39-WIP-1210~44 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8c5829fb8e7a59d4bf1ef82f65301658da7b2a3b;p=thirdparty%2Fe2fsprogs.git Fix Debian build rules to reflect changes in texi2html (Debian Bug #317862) Texi2html's behavior changed recently: if it is invoked with -split=chapter, old versions place the HTML files in the same directory as the documentation source, whereas new versions place the generated files in a subdirectory. Reported by Matt Kraai. Signed-off-by: "Theodore Ts'o" --- diff --git a/debian/rules b/debian/rules index 27e8e2b49..6eb8bcc66 100644 --- a/debian/rules +++ b/debian/rules @@ -184,7 +184,7 @@ clean: -make -C ${stdbuilddir} -i distclean -make -C ${bfbuilddir} -i distclean rm -rf ${stdbuilddir} ${bfbuilddir} ${mipsbuilddir} - rm -f doc/libext2fs_*.html lib/et/com_err_*.html debian/*.substvars + rm -f doc/libext2fs/*.html lib/et/com_err/*.html debian/*.substvars dh_clean install: cleanup install-std @@ -306,10 +306,10 @@ binary-arch: install install-udeb # HTML docs install -d ${debdir}/e2fslibs-dev/usr/share/doc/e2fslibs/html-info/ - install -p ${stdbuilddir}/doc/libext2fs_*.html \ + install -p ${stdbuilddir}/doc/libext2fs/*.html \ ${debdir}/e2fslibs-dev/usr/share/doc/e2fslibs/html-info/ install -d ${debdir}/comerr-dev/usr/share/doc/libcomerr${COMERR_SOVERSION}/html-info/ - install -p ${stdbuilddir}/lib/et/com_err_*.html \ + install -p ${stdbuilddir}/lib/et/com_err/*.html \ ${debdir}/comerr-dev/usr/share/doc/libcomerr${COMERR_SOVERSION}/html-info/ # texinfo docs