diff options
author | Dan Nichilson <dnicholson@linuxfromscratch.org> | 2007-02-24 04:56:32 +0000 |
---|---|---|
committer | Dan Nichilson <dnicholson@linuxfromscratch.org> | 2007-02-24 04:56:32 +0000 |
commit | 79286f58d67ba2be55abe2ff3c2cdb0848eb8ab4 (patch) | |
tree | 36acda329c3f50609aaabf0e5959e41c7238701a /chapter06 | |
parent | 997a8b7c5f74faf08fcd25844add8831f6e79b47 (diff) |
Patch from Chris Staub with various fixes
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7935 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/autoconf.xml | 2 | ||||
-rw-r--r-- | chapter06/e2fsprogs.xml | 8 | ||||
-rw-r--r-- | chapter06/kernfs.xml | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/chapter06/autoconf.xml b/chapter06/autoconf.xml index 4ffb8e9ee..e971ba7e2 100644 --- a/chapter06/autoconf.xml +++ b/chapter06/autoconf.xml @@ -45,7 +45,7 @@ <para>To test the results, issue: <userinput>make check</userinput>. - This takes a long time, about 3 SBUs. In addition, 2 test are skipped + This takes a long time, about 3 SBUs. In addition, 6 tests are skipped that use Automake. For full test coverage, Autoconf can be re-tested after Automake has been installed.</para> diff --git a/chapter06/e2fsprogs.xml b/chapter06/e2fsprogs.xml index 960a32bb6..5739b146c 100644 --- a/chapter06/e2fsprogs.xml +++ b/chapter06/e2fsprogs.xml @@ -42,8 +42,8 @@ <screen><userinput>sed -i -e 's@/bin/rm@/tools&@' lib/blkid/test_probe.in</userinput></screen> - <para>It is recommended that E2fsprogs be built in a subdirectory of - the source tree: </para> + <para>The E2fsprogs documentation recommends that the package be built in + a subdirectory of the source tree: </para> <screen><userinput>mkdir -v build cd build</userinput></screen> @@ -106,11 +106,11 @@ cd build</userinput></screen> <xref linkend="space-mounting"/> for details on creating and enabling swap space.</para> - <para>Install the binaries and documentation:</para> + <para>Install the binaries, documentation, and shared libraries:</para> <screen><userinput>make install</userinput></screen> - <para>Install the shared libraries:</para> + <para>Install the static libraries and headers:</para> <screen><userinput>make install-libs</userinput></screen> diff --git a/chapter06/kernfs.xml b/chapter06/kernfs.xml index 1570de4be..9afb35763 100644 --- a/chapter06/kernfs.xml +++ b/chapter06/kernfs.xml @@ -59,7 +59,7 @@ mknod -m 666 $LFS/dev/null c 1 3</userinput></screen> create a mirror of a directory or mount point to some other location. Use the following command to achieve this:</para> -<screen><userinput>mount --bind /dev $LFS/dev</userinput></screen> +<screen><userinput>mount -v --bind /dev $LFS/dev</userinput></screen> </sect2> |