aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05/bzip2-exp.xml
diff options
context:
space:
mode:
authorThomas Balu Walter <tw@itreff.de>2001-03-18 19:30:50 +0000
committerThomas Balu Walter <tw@itreff.de>2001-03-18 19:30:50 +0000
commit72033583eb677b863c84eb1454a20ee4ddbcd46e (patch)
treed3b025a3185f68acc8495744587d827ccb83c56a /chapter05/bzip2-exp.xml
parentab8b3526fa47ad4fd098fe6135492c739e0feb4a (diff)
You
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@334 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
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>