From 5763f6758eff4e014e353fca57c2064915c46544 Mon Sep 17 00:00:00 2001 From: Alex Gronenwoud Date: Mon, 3 Nov 2003 22:47:39 +0000 Subject: Fixing some tiny typos, and rephrasing a few more lines. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@3056 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/adjustingtoolchain.xml | 2 +- chapter06/bzip2.xml | 4 ++-- chapter06/gcc-2953.xml | 2 +- chapter06/grub.xml | 4 ++-- chapter06/gzip.xml | 7 ++++--- chapter06/kbd.xml | 2 +- chapter06/texinfo.xml | 2 +- 7 files changed, 12 insertions(+), 11 deletions(-) (limited to 'chapter06') diff --git a/chapter06/adjustingtoolchain.xml b/chapter06/adjustingtoolchain.xml index 4c587ae68..a5606ad54 100644 --- a/chapter06/adjustingtoolchain.xml +++ b/chapter06/adjustingtoolchain.xml @@ -5,7 +5,7 @@ Now that the new C libraries have been installed, it's time to re-adjust our toolchain. We'll adjust it so that it will link any newly compiled program against the new C libraries. Basically, this is the reverse of what we did -in the "Locking in" stage in the beginning of the previous chapter. +in the "locking in" stage in the beginning of the previous chapter. The first thing to do is to adjust the linker. For this we retained the source and build directories from the second pass over Binutils. Install the diff --git a/chapter06/bzip2.xml b/chapter06/bzip2.xml index bc032f049..6b1c4f695 100644 --- a/chapter06/bzip2.xml +++ b/chapter06/bzip2.xml @@ -21,7 +21,7 @@ make clean The -f flag will cause Bzip2 to be built using a different Makefile file, in this case the Makefile-libbz2_so file, which creates a dynamic -libbz2.so library and links the bzip2 utilities +libbz2.so library and links the Bzip2 utilities against it. Compile the package: @@ -34,7 +34,7 @@ against it. And install the shared bzip2 binary into the /bin directory, then make some -necessary symbolic links, and clean up. +necessary symbolic links, and clean up: cp bzip2-shared /bin/bzip2 cp -a libbz2.so* /lib diff --git a/chapter06/gcc-2953.xml b/chapter06/gcc-2953.xml index f0f196ada..5071ad4ce 100644 --- a/chapter06/gcc-2953.xml +++ b/chapter06/gcc-2953.xml @@ -47,7 +47,7 @@ directory in a dedicated build directory: mkdir ../gcc-2-build cd ../gcc-2-build -Compile and install gcc: +Compile and install the compiler: ../gcc-2.95.3/configure --prefix=/opt/gcc-2.95.3 \     --enable-shared --enable-languages=c \ diff --git a/chapter06/grub.xml b/chapter06/grub.xml index 431715f8d..929e2310b 100644 --- a/chapter06/grub.xml +++ b/chapter06/grub.xml @@ -19,11 +19,11 @@ have defined any environment variables that override default optimizations, such as CFLAGS and CXXFLAGS, we recommend unsetting them when building Grub. -Grub needs a patch to fix a compilation problem with GCC-&gcc-version; +First fix a compilation problem with GCC-&gcc-version;: patch -Np1 -i ../&grub-patch; -Prepare Grub for compilation: +Now prepare Grub for compilation: ./configure --prefix=/usr diff --git a/chapter06/gzip.xml b/chapter06/gzip.xml index c5a65e9b0..a0ef7800b 100644 --- a/chapter06/gzip.xml +++ b/chapter06/gzip.xml @@ -17,9 +17,10 @@ Estimated required disk space: &gzip-compsize; ./configure --prefix=/usr -The gzexe program has the location of the gzip binary hard-wired into -it. Because we later change the location of this binary, the following -command will place the new location into the gzexe binary. +The gzexe program has the location of the +gzip binary hard-wired into it. Because we later change +the location of this latter binary, the following command assures that the new +location gets placed into the binary: cp gzexe.in{,.backup} sed 's%"BINDIR"%/bin%' gzexe.in.backup > gzexe.in diff --git a/chapter06/kbd.xml b/chapter06/kbd.xml index 33eb1d71c..14b20f15a 100644 --- a/chapter06/kbd.xml +++ b/chapter06/kbd.xml @@ -15,7 +15,7 @@ Estimated required disk space: &kbd-compsize; By default some of Kbd's utilities (setlogcons, setvesablank and getunimap) are -not installed . The patch enables the compilation of these utilities: +not installed. First enable the compilation of these utilities: patch -Np1 -i ../&kbd-patch; diff --git a/chapter06/texinfo.xml b/chapter06/texinfo.xml index a00d157eb..a3d5cadd2 100644 --- a/chapter06/texinfo.xml +++ b/chapter06/texinfo.xml @@ -35,7 +35,7 @@ following command will do so: make TEXMF=/usr/share/texmf install-tex -The meaning of the make option: +The meaning of the make parameter: TEXMF=/usr/share/texmf: The TEXMF -- cgit v1.2.3-54-g00ecf