diff options
author | Timothy Bauscher <timothy@linuxfromscratch.org> | 2002-09-18 18:31:39 +0000 |
---|---|---|
committer | Timothy Bauscher <timothy@linuxfromscratch.org> | 2002-09-18 18:31:39 +0000 |
commit | 60ed866798672201b1e79c15a8f38e4f7f76a9a1 (patch) | |
tree | f14e7aa45bfd86f16e0601212417a0d71edbf844 | |
parent | 8d8ab633a0bf92e5f9f95518616120b4d82a5d5a (diff) |
Fixed typos, removed old command explanation.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2114 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | appendixa/flex-desc.xml | 4 | ||||
-rw-r--r-- | chapter01/changelog.xml | 4 | ||||
-rw-r--r-- | chapter01/how.xml | 8 | ||||
-rw-r--r-- | chapter02/aboutlfs.xml | 6 | ||||
-rw-r--r-- | chapter05/bash-inst.xml | 2 | ||||
-rw-r--r-- | chapter05/fileutils-inst.xml | 2 | ||||
-rw-r--r-- | chapter06/gcc-exp.xml | 13 | ||||
-rw-r--r-- | chapter06/ncurses-exp.xml | 5 | ||||
-rw-r--r-- | entities/makedev.ent | 2 | ||||
-rw-r--r-- | index.xml | 4 |
10 files changed, 24 insertions, 26 deletions
diff --git a/appendixa/flex-desc.xml b/appendixa/flex-desc.xml index a7fb8f078..313a41bb7 100644 --- a/appendixa/flex-desc.xml +++ b/appendixa/flex-desc.xml @@ -12,8 +12,8 @@ patterns in text. Pattern recognition is very useful in many applications. A user sets up rules what to look for and flex will make a program that looks for those -patterns. The reason people use flex is that it is much easier to sets up -rules for what to look for than to write the actual program that finds +patterns. The reason people use flex is that it is much easier to set up +rules for what to look for than to write the actual program which finds the text.</para></sect4> <sect4><title>flex++</title> diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 43b58c518..f7d9784d5 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -56,6 +56,10 @@ </itemizedlist> </para></listitem> +<listitem><para>September 18th, 2002 [timothy]: Chapter 06 - Ncurses: +Removed old <userinput>mv /lib/*.a /usr/lib</userinput> command +explanation.</para></listitem> + <listitem><para>September 13th, 2002 [gerard]: Chapter 06 - Shadow: Added --libdir=/usr/lib to the configure script options. This way a proper <filename>libshadow.la</filename> is generated. Also changed the diff --git a/chapter01/how.xml b/chapter01/how.xml index fe743db27..5d0ec73f3 100644 --- a/chapter01/how.xml +++ b/chapter01/how.xml @@ -3,7 +3,7 @@ <?dbhtml filename="how.html" dir="chapter01"?> <para>We are going to build the LFS system by using a previously installed -Linux distribution such as Debian, SuSe, Slackware, Mandrake, RedHat, etc. +Linux distribution such as Debian, SuSE, Slackware, Mandrake, RedHat, etc. We will use the existing Linux system as the development platform, because we need tools like a compiler, linker, text editor, and other necessary development tools to build our system. Ordinarily, the required tools are @@ -19,12 +19,14 @@ packages that will form the basic development suite which is used to build the actual system, or needed to resolve circular dependencies. For example, you need a compiler to build a new compiler, and you need a shell in order to install a new shell. The packages in this chapter will be linked -statically. Static linking describes a method of compiling software so that +statically.</para> + +<para>Static linking describes a method of compiling software so that it does not require the presence of libraries when building is complete. The resulting program is able to function on its own. The program is able to do so because the pieces of the program that would normally remain in the libraries are copied from the libraries and built right into the program. -Ordinarily software is built with dynamic linking. This conserves storage +Ordinarily, software is built with dynamic linking. This conserves storage space and increases the efficiency of many programs. We statically link our software in chapter 5 because we will in theory be moving our development system to a virtual environment where the already mentioned diff --git a/chapter02/aboutlfs.xml b/chapter02/aboutlfs.xml index f49d2868b..f53f858f8 100644 --- a/chapter02/aboutlfs.xml +++ b/chapter02/aboutlfs.xml @@ -10,8 +10,8 @@ explained in full detail in chapter 4. For example, let's assume that the LFS partition is mounted on /mnt/lfs.</para> <para>For example when you are told to run a command like -<userinput>./configure --prefix=$LFS</userinput> you actually have to -execute <userinput>./configure --prefix=/mnt/lfs</userinput></para> +<userinput>./configure --prefix=$LFS/static</userinput> you actually have to +execute <userinput>./configure --prefix=/mnt/lfs/static</userinput>.</para> <para>It's important that this is done no matter where it is read; be it in commands entered in a shell, or in a file edited or created.</para> @@ -23,7 +23,7 @@ This way $LFS can be entered literally instead of replacing it with <para><screen><userinput>export LFS=/mnt/lfs</userinput></screen></para> <para>Now, if you are told to run a command like <userinput>./configure ---prefix=$LFS</userinput> you can type that literally. Your shell will +--prefix=$LFS/static</userinput> you can type that literally. Your shell will replace $LFS with /mnt/lfs when it processes the command line (meaning when you hit enter after having typed the command).</para> diff --git a/chapter05/bash-inst.xml b/chapter05/bash-inst.xml index 23488c6da..bfd893b88 100644 --- a/chapter05/bash-inst.xml +++ b/chapter05/bash-inst.xml @@ -9,7 +9,7 @@ the instructions of the book version you read exactly.</para> <para>If both of the files are missing, you have to install the Ncurses development package. This package is often called something like -<emphasis>Ncurses-dev</emphasis>. If this package is already installed, +<emphasis>ncurses-dev</emphasis>. If this package is already installed, or you just installed it, check for the two files again. Often the <filename>libcurses.a</filename> file is (still) missing. If so, then create <filename>libcurses.a</filename> as a symlink by running the diff --git a/chapter05/fileutils-inst.xml b/chapter05/fileutils-inst.xml index 8e209b4e1..bebf6cb95 100644 --- a/chapter05/fileutils-inst.xml +++ b/chapter05/fileutils-inst.xml @@ -14,7 +14,7 @@ and has Glibc-2.2.3 (or higher) installed. If that's the case, you'll need to remove the fileutils-&fileutils-version; directory and unpack it again from the tarball before continuing. We believe this may be the case when your distribution has altered Glibc-2.2.3 somehow, but details are -unavailable at the time.</para> +unavailable at this time.</para> <para>To fix this package to compile properly on AMD/Glibc-2.2.3 machines, run the following command. Do <emphasis>not</emphasis> diff --git a/chapter06/gcc-exp.xml b/chapter06/gcc-exp.xml index 38ce93aa5..bb80d3893 100644 --- a/chapter06/gcc-exp.xml +++ b/chapter06/gcc-exp.xml @@ -7,13 +7,10 @@ linux distributions.</para> <para><userinput>--enable-clocale=gnu:</userinput> There is a risk that some people will build ABI incompatible C++ libraries if they didn't install -all the glibc localedata. Using --enable-clocale=gnu ensures that the "right -thing" is done in all cases. If you don't want to use this option and don't -want to build all the locales, then at least make sure you installed the -<emphasis>de_DE</emphasis> locale with Glibc, since that's the specific locale -GCC will check for to determine which locale mode to use (if de_DE is -found, <emphasis>gnu</emphasis> mode is used, which is the corrent one to -use).</para> +all of the glibc localedata. Using --enable-clocale=gnu ensures that the +"right thing" is done in all cases. If you don't wish to use this option, +then at least build the <emphasis>de_DE</emphasis> locale. When GCC finds +this specific locale, then the correct locale mode (<emphasis>gnu</emphasis>) +is implemented.</para> </sect2> - diff --git a/chapter06/ncurses-exp.xml b/chapter06/ncurses-exp.xml index ac9f5fdbc..ed43190e0 100644 --- a/chapter06/ncurses-exp.xml +++ b/chapter06/ncurses-exp.xml @@ -8,11 +8,6 @@ constructions that are no longer valid in the new C++ standard.</para> <para><userinput>--with-shared:</userinput> This enables the build of the shared ncurses library files.</para> -<para><userinput>mv /lib/*.a /usr/lib :</userinput> This -moves all of the static ncurses library files from /lib to /usr/lib. -/lib should only contain the shared files which are essential to the -system when /usr may not be mounted.</para> - <para><userinput>chmod 755 *.5.2:</userinput> Shared libraries should be executable. Ncurses install routine doesn't set the permissions properly so we do it manually instead.</para> diff --git a/entities/makedev.ent b/entities/makedev.ent index fa8c73c41..2e7ce78d7 100644 --- a/entities/makedev.ent +++ b/entities/makedev.ent @@ -13,7 +13,7 @@ <!ENTITY makedev-depversion "1.5"> <!ENTITY makedev-contversion "1.5"> <!ENTITY makedev-size "8 KB"> -<!ENTITY makedev-package "MAKEDEV-&makedev-version;.tar.bz2"> +<!ENTITY makedev-package "MAKEDEV-&makedev-version;.bz2"> <!ENTITY makedev-compsize "50 KB"> <!ENTITY makedev-time "0.07 SBU"> @@ -4,8 +4,8 @@ <!ENTITY book SYSTEM "book/book.xml"> -<!ENTITY version "20020914"> -<!ENTITY releasedate "September 14th, 2002"> +<!ENTITY version "20020918"> +<!ENTITY releasedate "September 18th, 2002"> <!ENTITY ftp-root "ftp://ftp.linuxfromscratch.org"> <!ENTITY http-root "http://ftp.linuxfromscratch.org"> |