aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05/bzip2-exp.xml
diff options
context:
space:
mode:
Diffstat (limited to 'chapter05/bzip2-exp.xml')
-rw-r--r--chapter05/bzip2-exp.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/chapter05/bzip2-exp.xml b/chapter05/bzip2-exp.xml
index 788de4298..64735fb61 100644
--- a/chapter05/bzip2-exp.xml
+++ b/chapter05/bzip2-exp.xml
@@ -12,7 +12,7 @@ will be easier to link bzip2 statically.
<userinput>...Makefile | make -f -:</userinput> Makefile
is the last parameter of the sed command which indicates the file to
search and replace in. sed normally sends the modified file to stdout
-(standard output) which will be your console. With the construction we
+(standard output) which will be the console. With the construction we
use, sed's output will be piped to the make program. Normally when make
is started it tries to find a number of files like Makefile. But we have
modified the Makefile file so we don't want make to use it. The "-f -"
@@ -24,8 +24,8 @@ and tell make with the -f parameter to read that alternate file.
<para>
<userinput>LDFLAGS=-static:</userinput> This is the second way we use to
-link a package statically. This is also the most common way. As you'll
-notice, the -all-static value is only used with the binutils package and
+link a package statically. This is also the most common way.
+The -all-static value is only used with the binutils package and
won't be used throughout the rest of this book.
</para>