From 72033583eb677b863c84eb1454a20ee4ddbcd46e Mon Sep 17 00:00:00 2001 From: Thomas Balu Walter Date: Sun, 18 Mar 2001 19:30:50 +0000 Subject: You git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@334 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter05/bzip2-exp.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chapter05/bzip2-exp.xml') 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. ...Makefile | make -f -: 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. LDFLAGS=-static: 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. -- cgit v1.2.3-54-g00ecf