Author: manuel
Date: 2007-04-05 13:03:40 -0600 (Thu, 05 Apr 2007)
New Revision: 8015

Modified:
   trunk/BOOK/chapter05/binutils-pass1.xml
   trunk/BOOK/chapter06/m4.xml
   trunk/BOOK/chapter06/man-db.xml
   trunk/BOOK/chapter06/shadow.xml
   trunk/BOOK/chapter06/udev.xml
   trunk/BOOK/chapter07/inputrc.xml
   trunk/BOOK/chapter08/fstab.xml
Log:
Fixes for PDF output.

Modified: trunk/BOOK/chapter05/binutils-pass1.xml
===================================================================
--- trunk/BOOK/chapter05/binutils-pass1.xml     2007-04-04 20:13:28 UTC (rev 
8014)
+++ trunk/BOOK/chapter05/binutils-pass1.xml     2007-04-05 19:03:40 UTC (rev 
8015)
@@ -59,7 +59,8 @@
 
     <para>Now prepare Binutils for compilation:</para>
 
-<screen><userinput>CC="gcc -B/usr/bin/" 
../binutils-&binutils-version;/configure --prefix=/tools 
--disable-nls</userinput></screen>
+<screen><userinput>CC="gcc -B/usr/bin/" 
../binutils-&binutils-version;/configure \
+    --prefix=/tools --disable-nls</userinput></screen>
 
     <variablelist>
       <title>The meaning of the configure options:</title>

Modified: trunk/BOOK/chapter06/m4.xml
===================================================================
--- trunk/BOOK/chapter06/m4.xml 2007-04-04 20:13:28 UTC (rev 8014)
+++ trunk/BOOK/chapter06/m4.xml 2007-04-05 19:03:40 UTC (rev 8015)
@@ -69,7 +69,8 @@
       <?dbhtml list-presentation="table"?>
 
       <varlistentry id="m4">
-        <term><command>m4</command></term>
+         <!-- Don't remove the extra space, it prevet a FOP warning. -->
+        <term><command>m4 </command></term>
         <listitem>
           <para>copies the given files while expanding the macros that they
           contain. These macros are either built-in or user-defined and can

Modified: trunk/BOOK/chapter06/man-db.xml
===================================================================
--- trunk/BOOK/chapter06/man-db.xml     2007-04-04 20:13:28 UTC (rev 8014)
+++ trunk/BOOK/chapter06/man-db.xml     2007-04-05 19:03:40 UTC (rev 8015)
@@ -163,9 +163,13 @@
     <!-- Origin: man-db-2.4.3/src/encodings.c -->
     <table>
       <title>Expected character encoding of manual pages</title>
+      <?dbfo table-width="50%" ?>
 
-      <tgroup cols="2">
+      <tgroup cols="2" align="center">
 
+        <colspec colnum="1" colwidth="2in"/>
+        <colspec colnum="2" colwidth="2in"/>
+
         <thead>
           <row>
             <entry>Language (code)</entry>

Modified: trunk/BOOK/chapter06/shadow.xml
===================================================================
--- trunk/BOOK/chapter06/shadow.xml     2007-04-04 20:13:28 UTC (rev 8014)
+++ trunk/BOOK/chapter06/shadow.xml     2007-04-05 19:03:40 UTC (rev 8015)
@@ -51,7 +51,8 @@
 
     <para>Prepare Shadow for compilation:</para>
 
-<screen><userinput>./configure --libdir=/lib --sysconfdir=/etc --enable-shared 
--without-selinux</userinput></screen>
+<screen><userinput>./configure --libdir=/lib --sysconfdir=/etc --enable-shared 
\
+    --without-selinux</userinput></screen>
 
     <variablelist>
       <title>The meaning of the configure options:</title>
@@ -108,7 +109,8 @@
     <note>
       <para>If you built Shadow with Cracklib support, run the 
following:</para>
 
-<screen role="nodump"><userinput>sed -i '[EMAIL 
PROTECTED]@DICTPATH\t/lib/cracklib/pw_dict@' etc/login.defs</userinput></screen>
+<screen role="nodump"><userinput>sed -i '[EMAIL 
PROTECTED]@DICTPATH\t/lib/cracklib/pw_dict@' \
+    etc/login.defs</userinput></screen>
     </note>
 
     <para>Compile the package:</para>

Modified: trunk/BOOK/chapter06/udev.xml
===================================================================
--- trunk/BOOK/chapter06/udev.xml       2007-04-04 20:13:28 UTC (rev 8014)
+++ trunk/BOOK/chapter06/udev.xml       2007-04-05 19:03:40 UTC (rev 8015)
@@ -54,8 +54,9 @@
     <para>Compile the package:</para>
 
 <screen><userinput>make EXTRAS="extras/ata_id extras/cdrom_id extras/edd_id \
-            extras/firmware extras/floppy extras/path_id extras/rule_generator 
\
-            extras/scsi_id extras/usb_id extras/volume_id"</userinput></screen>
+    extras/firmware extras/floppy extras/path_id \
+    extras/rule_generator extras/scsi_id extras/usb_id \
+    extras/volume_id"</userinput></screen>
 
     <variablelist>
       <title>The meaning of the make option:</title>
@@ -80,8 +81,9 @@
 
 <screen><userinput>make DESTDIR=/ \
     EXTRAS="extras/ata_id extras/cdrom_id extras/edd_id \
-            extras/firmware extras/floppy extras/path_id extras/rule_generator 
\
-            extras/scsi_id extras/usb_id extras/volume_id" 
install</userinput></screen>
+            extras/firmware extras/floppy extras/path_id \
+            extras/rule_generator extras/scsi_id \
+            extras/usb_id extras/volume_id" install</userinput></screen>
 
     <variablelist>
       <title>The meaning of the make parameter:</title>

Modified: trunk/BOOK/chapter07/inputrc.xml
===================================================================
--- trunk/BOOK/chapter07/inputrc.xml    2007-04-04 20:13:28 UTC (rev 8014)
+++ trunk/BOOK/chapter07/inputrc.xml    2007-04-05 19:03:40 UTC (rev 8015)
@@ -53,10 +53,8 @@
 # none, visible or audible
 set bell-style none
 
-# All of the following map the escape sequence of the
-# value contained inside the 1st argument to the
-# readline specific functions
-
+# All of the following map the escape sequence of the value
+# contained in the 1st argument to the readline specific functions
 "\eOd": backward-word
 "\eOc": forward-word
 

Modified: trunk/BOOK/chapter08/fstab.xml
===================================================================
--- trunk/BOOK/chapter08/fstab.xml      2007-04-04 20:13:28 UTC (rev 8014)
+++ trunk/BOOK/chapter08/fstab.xml      2007-04-05 19:03:40 UTC (rev 8015)
@@ -61,16 +61,16 @@
   relevant character set definition (found under File systems -&gt;
   Native Language Support) has been compiled into the kernel
   or built as a module. The <quote>codepage</quote> option is also needed for
-  vfat and smbfs filesystems. It
-  should be set to the codepage number used under MS-DOS in your country. E.g.,
-  in order to mount USB flash drives, a ru_RU.KOI8-R user would need the
-  following line in <filename>/etc/fstab</filename>:</para>
+  vfat and smbfs filesystems. It should be set to the codepage number used
+  under MS-DOS in your country. E.g., in order to mount USB flash drives, a
+  ru_RU.KOI8-R user would need the following in the options portion of its
+  mount line in <filename>/etc/fstab</filename>:</para>
 
-<screen>/dev/sda1    /media/flash vfat 
noauto,user,quiet,showexec,iocharset=koi8r,codepage=866 0 0</screen>
+<screen>noauto,user,quiet,showexec,iocharset=koi8r,codepage=866</screen>
 
-  <para>The corresponding line for ru_RU.UTF-8 users is:</para>
+  <para>The corresponding options fragment for ru_RU.UTF-8 users is:</para>
 
-<screen>/dev/sda1    /media/flash vfat 
noauto,user,quiet,showexec,iocharset=utf8,codepage=866 0 0</screen>
+<screen>noauto,user,quiet,showexec,iocharset=utf8,codepage=866</screen>
 
   <note>
     <para>In the latter case, the kernel emits the following message:</para>

-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-book
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page

Reply via email to