diff --git a/chapter06/gcc-pass2.xml b/chapter06/gcc-pass2.xml
index c5d5870e8..d02ff5457 100644
--- a/chapter06/gcc-pass2.xml
+++ b/chapter06/gcc-pass2.xml
@@ -53,8 +53,8 @@ mv -v gmp-&gmp-version; gmp
tar -xf ../mpc-&mpc-version;.tar.gz
mv -v mpc-&mpc-version; mpc
- If building on x86_64, change the default directory name for 64-bit
- libraries to lib
:
+ If you are building on x86_64, change the default directory name for
+ 64-bit libraries to lib
:
case $(uname -m) in
x86_64)
@@ -63,7 +63,7 @@ mv -v mpc-&mpc-version; mpc
;;
esac
- Override the building rule of libgcc and libstdc++ headers, to
+ Override the build rules of the libgcc and libstdc++ headers to
allow building these libraries with POSIX threads support:
sed '/thread_header =/s/@.*@/gthr-posix.h/' \
@@ -107,10 +107,10 @@ cd build
Normally, using --host ensures that
a cross-compiler is used for building GCC, and that compiler knows
that it has to look for headers and libraries in $LFS. But the build system for GCC uses
- other tools, which are not aware of this location. This switch is
- needed so those tools will find the needed files in $LFS, and not on the host.
+ class="directory">$LFS. However, the build system for GCC
+ uses additional tools which are not aware of this location. This
+ switch is needed so those tools will find the needed files in
+ $LFS, and not on the host.