From: Mark Wooding Date: Tue, 14 Mar 2006 17:19:02 +0000 (+0000) Subject: manual/Makefile.am: Install the HTML version of the manual correctly. X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/become/commitdiff_plain/7c6720e02bd883a2f77dd7ae55ae5146cd6c272f manual/Makefile.am: Install the HTML version of the manual correctly. Somewhere along the line, texi2html started producing its output in a directory. The Makefile failed to track this change. --- diff --git a/manual/Makefile.am b/manual/Makefile.am index 8dba071..54c50a7 100644 --- a/manual/Makefile.am +++ b/manual/Makefile.am @@ -42,7 +42,7 @@ stamp-html.in: $(srcdir)/become.texi install-data-local: stamp-html.in $(mkinstalldirs) $(DESTDIR)$(htmldir) - for i in $(srcdir)/become_*.html; do \ + for i in $(srcdir)/become/become_*.html; do \ $(INSTALL_DATA) $$i $(DESTDIR)$(htmldir); \ done @@ -52,10 +52,11 @@ uninstall-local: dist-hook: distdir=`cd $(distdir) && pwd`; \ cd $(srcdir); \ - ln become_*.html $$distdir + mkdir $$distdir/become; \ + ln become/become_*.html $$distdir/become MAINTAINERCLEANFILES = \ - $(srcdir)/stamp-html.in $(srcdir)/become_*.html \ + $(srcdir)/stamp-html.in $(srcdir)/become/become_*.html \ $(srcdir)/become.info* ##----- That's all, folks ---------------------------------------------------