diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2009-08-12 19:16:30 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2009-08-12 19:16:30 +0000 |
commit | 5f7456b7b42ed2d048d60e040dcc56885a61c773 (patch) | |
tree | 4d128df0f358684407cb606a3b96154535f384ae /chapter05/gcc-pass2.xml | |
parent | c711a6187d566eaa4c7adca63293a1c595c790f4 (diff) |
Various text corrections from Chris Staub. Fixes #2470.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9037 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/gcc-pass2.xml')
-rw-r--r-- | chapter05/gcc-pass2.xml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chapter05/gcc-pass2.xml b/chapter05/gcc-pass2.xml index cd2d53195..76107dddb 100644 --- a/chapter05/gcc-pass2.xml +++ b/chapter05/gcc-pass2.xml @@ -100,7 +100,8 @@ do done</userinput></screen> <para>In case the above seems hard to follow, let's break it down a bit. - First we find all the files under the gcc/config directory that are named + First we find all the files under the + <filename class="directory">gcc/config</filename> directory that are named either <filename>linux.h</filename>, <filename>linux64.h</filename> or <filename>sysv4.h</filename>. For each file found, we copy it to a file of the same name but with an added @@ -112,7 +113,7 @@ done</userinput></screen> to the end of the file. Finally, we use <command>touch</command> to update the timestamp on the copied files. When used in conjunction with <command>cp -u</command>, this prevents unexpected - changes to the original files in case the command is inadvertently run twice. + changes to the original files in case the commands are inadvertently run twice. </para> <para>On x86_64, unsetting the multilib spec for GCC ensures that it |