aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorBruce Dubbs <bdubbs@linuxfromscratch.org>2017-12-28 03:52:38 +0000
committerBruce Dubbs <bdubbs@linuxfromscratch.org>2017-12-28 03:52:38 +0000
commit0d84af1cbb0dc825db3e965d5126e5b08f878067 (patch)
tree46feb76bec2b74f6ee78baa2ea65ea70ca6a8941 /chapter05
parent9fde3e965f7c86afb36186ec44167192a74b0d7a (diff)
Typos and wording changes
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11343 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/gcc-pass1.xml16
-rw-r--r--chapter05/generalinstructions.xml2
2 files changed, 10 insertions, 8 deletions
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml
index aa3632481..e4c888294 100644
--- a/chapter05/gcc-pass1.xml
+++ b/chapter05/gcc-pass1.xml
@@ -84,7 +84,7 @@ done</userinput></screen>
<para>In case the above seems hard to follow, let's break it down a bit.
First we copy the files <filename>gcc/config/linux.h</filename>,
<filename>gcc/config/i386/linux.h</filename>, and
- <filename>gcc/config/i368/linux64.h</filename>. to a file of
+ <filename>gcc/config/i368/linux64.h</filename> to a file of
the same name but with an added suffix of <quote>.orig</quote>. Then the
first sed expression prepends <quote>/tools</quote> to every instance of
<quote>/lib/ld</quote>, <quote>/lib64/ld</quote> or
@@ -185,12 +185,14 @@ cd build</userinput></screen>
<varlistentry>
<term><parameter>--with-native-system-header-dir=/tools/include</parameter></term>
<listitem>
- <para>By default GCC searches <filename>/usr/include</filename> for system
- headers. In conjunction with the sysroot switch, this would translate normally
- to <filename>$LFS/usr/include</filename>. However the headers that will be installed
- in the next two sections will go to <filename>$LFS/tools/include</filename>. This
- switch ensures that gcc will find them correctly. In the second pass of GCC, this
- same switch will ensure that no headers from the host system are found.</para>
+ <para>By default GCC searches <filename>/usr/include</filename> for
+ system headers. In conjunction with the sysroot switch, this would
+ normally translate to <filename>$LFS/usr/include</filename>. However
+ the headers that will be installed in the next two sections will go
+ to <filename>$LFS/tools/include</filename>. This switch ensures that
+ gcc will find them correctly. In the second pass of GCC, this same
+ switch will ensure that no headers from the host system are
+ found.</para>
</listitem>
</varlistentry>
diff --git a/chapter05/generalinstructions.xml b/chapter05/generalinstructions.xml
index d2f5d61af..0f14246cf 100644
--- a/chapter05/generalinstructions.xml
+++ b/chapter05/generalinstructions.xml
@@ -48,7 +48,7 @@
<listitem>
- <para>Finally, two last important items must be emphasized:</para>
+ <para>Finally, two important items must be emphasized:</para>
<important>