From 7c6720e02bd883a2f77dd7ae55ae5146cd6c272f Mon Sep 17 00:00:00 2001 Message-Id: <7c6720e02bd883a2f77dd7ae55ae5146cd6c272f.1714517865.git.mdw@distorted.org.uk> From: Mark Wooding Date: Tue, 14 Mar 2006 17:19:02 +0000 Subject: [PATCH] manual/Makefile.am: Install the HTML version of the manual correctly. Organization: Straylight/Edgeware From: Mark Wooding Somewhere along the line, texi2html started producing its output in a directory. The Makefile failed to track this change. --- manual/Makefile.am | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 --------------------------------------------------- -- [mdw]