diff options
author | Ken Moffat <ken@linuxfromscratch.org> | 2007-06-24 13:03:35 +0000 |
---|---|---|
committer | Ken Moffat <ken@linuxfromscratch.org> | 2007-06-24 13:03:35 +0000 |
commit | f19e766a8ee9b64cb06165842bdd56f94f61f1a3 (patch) | |
tree | 2cff0f6715ee99adaf58322e9cdc39bd683657e8 /chapter05 | |
parent | ea148539cb6d721406ec923a36e8c9348a89c4cb (diff) |
Add missing colons wherever we expect the builder to key in the userinput.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8174 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/adjusting.xml | 4 | ||||
-rw-r--r-- | chapter05/expect.xml | 2 | ||||
-rw-r--r-- | chapter05/gcc-pass1.xml | 2 | ||||
-rw-r--r-- | chapter05/gcc-pass2.xml | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/chapter05/adjusting.xml b/chapter05/adjusting.xml index 4e9727fc7..bad013455 100644 --- a/chapter05/adjusting.xml +++ b/chapter05/adjusting.xml @@ -19,7 +19,7 @@ to be renamed so that it can be properly found and used. First, backup the original linker, then replace it with the adjusted linker. We'll also create a link to its counterpart in <filename class="directory"> - /tools/$(gcc -dumpmachine)/bin</filename></para> + /tools/$(gcc -dumpmachine)/bin</filename>:</para> <screen><userinput>mv -v /tools/bin/{ld,ld-old} mv -v /tools/$(gcc -dumpmachine)/bin/{ld,ld-old} @@ -37,7 +37,7 @@ ln -sv /tools/bin/ld /tools/$(gcc -dumpmachine)/bin/ld</userinput></screen> <para>For the sake of accuracy, it is recommended to use a copy-and-paste method when issuing the following command. Be sure to visually inspect the specs file and verify that all occurrences of <quote>/lib/ld-linux.so.2</quote> - have been replaced with <quote>/tools/lib/ld-linux.so.2</quote>.</para> + have been replaced with <quote>/tools/lib/ld-linux.so.2</quote>:</para> <important> <para>If working on a platform where the name of the dynamic linker is diff --git a/chapter05/expect.xml b/chapter05/expect.xml index 4d92964c1..c813839fe 100644 --- a/chapter05/expect.xml +++ b/chapter05/expect.xml @@ -43,7 +43,7 @@ <para>Next, force Expect's configure script to use <filename>/bin/stty</filename> instead of a <filename>/usr/local/bin/stty</filename> it may find on the host system. This will ensure that our testsuite tools remain sane for the final builds of our - toolchain.</para> + toolchain:</para> <screen><userinput>cp configure{,.bak} sed 's:/usr/local/bin:/bin:' configure.bak > configure</userinput></screen> diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml index 7f2354fdd..75331bed3 100644 --- a/chapter05/gcc-pass1.xml +++ b/chapter05/gcc-pass1.xml @@ -131,7 +131,7 @@ cd ../gcc-build</userinput></screen> used to keep programs generic and therefore usable on all kinds of UNIX systems where the GNU C compiler is not always installed. Running <command>cc</command> leaves the system administrator free to decide - which C compiler to install.</para> + which C compiler to install:</para> <screen><userinput>ln -vs gcc /tools/bin/cc</userinput></screen> diff --git a/chapter05/gcc-pass2.xml b/chapter05/gcc-pass2.xml index df1dd5094..92874a456 100644 --- a/chapter05/gcc-pass2.xml +++ b/chapter05/gcc-pass2.xml @@ -78,7 +78,7 @@ sed 's@\./fixinc\.sh@-c true@' gcc/Makefile.in.orig > gcc/Makefile.in</userin built GCC with the <option>-fomit-frame-pointer</option> compiler flag. Non-bootstrap builds omit this flag by default, so apply the following <command>sed</command> to use it in order to ensure consistent compiler - builds.</para> + builds:</para> <screen><userinput>cp -v gcc/Makefile.in{,.tmp} && sed 's/^XCFLAGS =$/& -fomit-frame-pointer/' gcc/Makefile.in.tmp \ |