diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 2959ea927..80538ceea 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -39,6 +39,11 @@ 2009-06-29 + + [matthew] - Fixed the generation of the HTML documentation for + Sed. Thanks to Chris Staub for the report and patch. Fixes + #2422. + [matthew] - Added upstream Readline patches. Fixes #2426. 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 +