aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06/gcc.xml
diff options
context:
space:
mode:
Diffstat (limited to 'chapter06/gcc.xml')
-rw-r--r--chapter06/gcc.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/chapter06/gcc.xml b/chapter06/gcc.xml
index 261b81a77..66fdad552 100644
--- a/chapter06/gcc.xml
+++ b/chapter06/gcc.xml
@@ -46,7 +46,7 @@
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>sed -i 's/^XCFLAGS =$/&amp; -fomit-frame-pointer/' gcc/Makefile.in</userinput></screen>
@@ -62,7 +62,7 @@
compile time whether mktemp is present, and hardcodes the result in a test.
This will cause the script to fall back to using less random names for
temporary files. We will be installing mktemp later, so the following sed
- will simulate its presence.</para>
+ will simulate its presence:</para>
<screen><userinput>sed -i 's/@have_mktemp_command@/yes/' gcc/gccbug.in</userinput></screen>