Here are some bugs I found in the BLFS book: The stuff below is from my notes in building BLFS software:
# Installing docbook-dsssl-1.79 http://www.linuxfromscratch.org/blfs/view/svn/pst/docbook-dsssl.html # The first command in the testing section: Testing the DocBook SGML Toolchain (Optional) # is: cd /usr/share/sgml/docbook/dsssl-stylesheets-1.79/doc/testdata # It should be: cd /usr/share/sgml/docbook/dsssl-stylesheets-1.79/docbook-dsssl-1.79/doc/testdata # For docbook-xsl-1.77.1 there's an incorrect couple of instructions: ##################### install -v -m644 -D README \ /usr/share/doc/docbook-xsl-1.77.1 && install -v -m755 RELEASE-NOTES* NEWS* \ /usr/share/doc/docbook-xsl-1.77.1 ##################### # This should be something like (except I'm not sure about the permissions): ##################### install -v -m755 -d \ /usr/share/doc/docbook-xsl-1.77.1 && install -v -m644 README \ /usr/share/doc/docbook-xsl-1.77.1 && install -v -m755 RELEASE-NOTES* NEWS* \ /usr/share/doc/docbook-xsl-1.77.1 ##################### -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
