From 94e69545480652dc592f78f3fe42142a4699a9a4 Mon Sep 17 00:00:00 2001 From: Matthew Burgess Date: Mon, 29 Jun 2009 20:03:59 +0000 Subject: Fix the generation of Sed's HTML documentation. Fixes #2422. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8954 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/sed.xml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) (limited to 'chapter06') diff --git a/chapter06/sed.xml b/chapter06/sed.xml index ce5a9ff75..d95e74858 100644 --- a/chapter06/sed.xml +++ b/chapter06/sed.xml @@ -42,15 +42,16 @@ Prepare Sed for compilation: -./configure --prefix=/usr --bindir=/bin --enable-html +./configure --prefix=/usr --bindir=/bin --htmldir=/usr/share/doc/sed-&sed-version; The meaning of the new configure option: - --enable-html + --htmldir - This builds the HTML documentation. + This sets the directory where the HTML documentation will be + installed to. @@ -59,6 +60,10 @@ make + Generate the HTML documentation: + +make html + To test the results, issue: make check @@ -67,6 +72,10 @@ make install + Install the HTML documentation: + +make -C doc install-html + -- cgit v1.2.3-54-g00ecf