Alan Feuerbacher wrote: > 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
I think you may have omitted something earlier. We do: install -v -d -m755 /usr/share/sgml/docbook/dsssl-stylesheets-1.79 && cp -v -R * /usr/share/sgml/docbook/dsssl-stylesheets-1.79 That's where the testdata directory is created. > # 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 > ##################### The first command is correct. See the man page for install -D, but the 2nd command should be -m644. I'll fix that. -- Bruce -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
