Browse Source

Added 'nodump' to commands in the Package Management section.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7309 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Jeremy Huntwork 19 years ago
parent
commit
942465e12e
2 changed files with 6 additions and 8 deletions
  1. 4 6
      chapter01/changelog.xml
  2. 2 2
      chapter06/pkgmgt.xml

+ 4 - 6
chapter01/changelog.xml

@@ -49,6 +49,10 @@
 	  sanity checks. These fixes are adapted from DIY-Linux and Greg Schafer.
 	  Thanks to Dan Nicholson for the report, as well.
 	</listitem>
+	<listitem>
+	  <para>[jhuntwork] - Added 'nodump' to commands in the Package Management
+	  section.</para<
+	</listitem>
       </itemizedlist>
     </listitem>
 
@@ -72,12 +76,6 @@
 	  Fixes bug 1677. Thanks to Chris Staub, Alexander Patrakov, Greg Schafer and
 	  Tushar Teredesai for reporting and resolving this issue.</para>
 	</listitem>
-      </itemizedlist>
-    </listitem>
-
-    <listitem>
-      <para>January 25, 2006</para>
-      <itemizedlist>
         <listitem>
           <para>[matthew] - Upgrade coreutils i18n patch to version 2 to fix
           <command>sort -n</command> and add the en_US.UTF-8 locale to improve

+ 2 - 2
chapter06/pkgmgt.xml

@@ -151,7 +151,7 @@
       are installing a package libfoo-1.1. The following instructions may
       not install the package properly:</para>
 
-<screen><userinput>./configure --prefix=/usr/pkg/libfoo/1.1
+<screen role="nodump"><userinput>./configure --prefix=/usr/pkg/libfoo/1.1
 make
 make install</userinput></screen>
 
@@ -164,7 +164,7 @@ make install</userinput></screen>
       <envar>DESTDIR</envar> strategy to fake installation of the package. This
       approach works as follows:</para>
 
-<screen><userinput>./configure --prefix=/usr
+<screen role="nodump"><userinput>./configure --prefix=/usr
 make
 make DESTDIR=/usr/pkg/libfoo/1.1 install</userinput></screen>