Applied Bill Maltby's grammatic-fixes patch.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2130 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Timothy Bauscher 2002-09-23 18:35:06 +00:00
parent 639a66c82c
commit 764d8f4d37
8 changed files with 19 additions and 16 deletions

View File

@ -22,8 +22,8 @@ it possible to retrieve the original individual files (called members of
the archive).</para></sect4> the archive).</para></sect4>
<sect4><title>as</title> <sect4><title>as</title>
<para>as is primarily intended to assemble the output of the GNU C compiler gcc <para>as is primarily intended to assemble the output of the GNU C compiler,
for use by the linker ld.</para></sect4> gcc, for use by the linker ld.</para></sect4>
<sect4><title>gasp</title> <sect4><title>gasp</title>
<para>gasp is the Assembler Macro Preprocessor.</para></sect4> <para>gasp is the Assembler Macro Preprocessor.</para></sect4>
@ -60,8 +60,8 @@ that is a relocatable object file.</para></sect4>
<para>readelf displays information about elf type binaries.</para></sect4> <para>readelf displays information about elf type binaries.</para></sect4>
<sect4><title>size</title> <sect4><title>size</title>
<para>size lists the section sizes --and the total size-- for each of the <para>size lists the section sizes --and the total size-- for each of the
object files objfile in its argument list. By default, one line of output is object files in its argument list. By default, one line of output is
generated for each object file or each module in an archive.</para></sect4> generated for each object file or each module in an archive.</para></sect4>
<sect4><title>strings</title> <sect4><title>strings</title>
@ -69,7 +69,7 @@ generated for each object file or each module in an archive.</para></sect4>
that are at least 4 characters long (or the number specified with an that are at least 4 characters long (or the number specified with an
option to the program) and are followed by an unprintable character. By option to the program) and are followed by an unprintable character. By
default, it only prints the strings from the initialized and loaded default, it only prints the strings from the initialized and loaded
sections of object files; for other types of files, it prints the strings sections of object files. For other types of files, it prints the strings
from the whole file.</para> from the whole file.</para>
<para>strings is mainly useful for determining the contents of non-text files.</para></sect4> <para>strings is mainly useful for determining the contents of non-text files.</para></sect4>

View File

@ -59,6 +59,9 @@
</itemizedlist> </itemizedlist>
</para></listitem> </para></listitem>
<listitem><para>September 23rd, 2002 [timothy]: Chapter 3,4,5: Applied
Bill Maltby's grammatic-fixes patch.</para></listitem>
<listitem><para>September 22nd, 2002 [timothy]: Chapter 06: Applied Alex's <listitem><para>September 22nd, 2002 [timothy]: Chapter 06: Applied Alex's
grammatic-fixes patch.</para></listitem> grammatic-fixes patch.</para></listitem>

View File

@ -15,7 +15,7 @@ Linux partition where we can build it. We recommend a partition size
of at least 1 GB. This provides enough space to store the tarballs and of at least 1 GB. This provides enough space to store the tarballs and
compile all of the packages. You will probably need more space if you compile all of the packages. You will probably need more space if you
intend to install additional software and use the LFS system as your intend to install additional software and use the LFS system as your
primary Linux system. If a Linux Native partition is already available, primary Linux system. If a Linux native partition is already available,
this subsection can be skipped.</para> this subsection can be skipped.</para>
<para>Since your system memory can only hold a limited amount of data <para>Since your system memory can only hold a limited amount of data
@ -31,7 +31,7 @@ when we create the <filename>/etc/fstab</filename> file.</para>
<para>The cfdisk program (or another fdisk-like program) should be <para>The cfdisk program (or another fdisk-like program) should be
started with the appropriate hard disk as the argument (like /dev/hda started with the appropriate hard disk as the argument (like /dev/hda
if a new partition is to be created on the primary master IDE disk). if a new partition is to be created on the primary master IDE disk).
Using this program, create a Linux Native partition. Please refer to Using this program, create a Linux native partition. Please refer to
the documentation of your fdisk program (the man pages are often a the documentation of your fdisk program (the man pages are often a
good place to start) for information about creating Linux native good place to start) for information about creating Linux native
partitions and writing partition tables.</para> partitions and writing partition tables.</para>

View File

@ -2,10 +2,10 @@
<title>Introduction</title> <title>Introduction</title>
<?dbhtml filename="introduction.html" dir="chapter03"?> <?dbhtml filename="introduction.html" dir="chapter03"?>
<para>Below follows a list of all the packages that you will need to <para>Below is a list of packages you need to download for building a
download in order to build a basic Linux system. The listed version basic Linux system. The listed version numbers correspond to versions
numbers correspond to versions of the software that are known to work and of the software that are known to work, and this book is based
which this book is based upon.</para> upon them.</para>
<para>All the URL's below refer to the main LFS server. There are several <para>All the URL's below refer to the main LFS server. There are several
FTP mirrors available from which you can download the files as well. The FTP mirrors available from which you can download the files as well. The

View File

@ -24,7 +24,7 @@ there.</para>
<para>The <userinput>&amp;&amp;</userinput>'s at the end of every line cause <para>The <userinput>&amp;&amp;</userinput>'s at the end of every line cause
the next command to be executed only if the previous command exits the next command to be executed only if the previous command exits
with a return value of 0 indicating success. In case all of these with a return value of 0 indicating success. In case all of these
commands are copy&amp;pasted on the shell, it is important to ensure commands are copy &amp; pasted on the shell, it is important to ensure
that if ./configure fails, make isn't executed and, likewise, if make that if ./configure fails, make isn't executed and, likewise, if make
fails, that make install isn't executed, and so forth.</para> fails, that make install isn't executed, and so forth.</para>

View File

@ -6,7 +6,7 @@ instructions for Binutils recommend creating a separate build directory
instead of compiling the package inside the source tree. So, we create a instead of compiling the package inside the source tree. So, we create a
binutils-build directory and work from there.</para> binutils-build directory and work from there.</para>
<para><userinput>--disable-nls:</userinput> This option disabled <para><userinput>--disable-nls:</userinput> This option disables
internationalization (also known as i18n). We don't need this for our internationalization (also known as i18n). We don't need this for our
static programs and nls often causes problems when you're linking static programs and nls often causes problems when you're linking
statically.</para> statically.</para>

View File

@ -45,7 +45,7 @@ in previous chapters already. $LC_ALL is a variable that is used for
internationalization.</para> internationalization.</para>
<para>When your host distribution uses a glibc version older than 2.2.4, <para>When your host distribution uses a glibc version older than 2.2.4,
having $LC_ALL set to something else than "C" or "POSIX" while working having $LC_ALL set to something other than "C" or "POSIX" while working
through Chapter 5 may cause trouble when you exit the chroot environment through Chapter 5 may cause trouble when you exit the chroot environment
of Chapter 6 and try to return to it. By setting this to "POSIX" ("C" of Chapter 6 and try to return to it. By setting this to "POSIX" ("C"
is an alias for "POSIX") we ensure that everything will work as expected is an alias for "POSIX") we ensure that everything will work as expected

View File

@ -4,8 +4,8 @@
<!ENTITY book SYSTEM "book/book.xml"> <!ENTITY book SYSTEM "book/book.xml">
<!ENTITY version "20020922"> <!ENTITY version "20020923">
<!ENTITY releasedate "September 22nd, 2002"> <!ENTITY releasedate "September 23rd, 2002">
<!ENTITY ftp-root "ftp://ftp.linuxfromscratch.org"> <!ENTITY ftp-root "ftp://ftp.linuxfromscratch.org">
<!ENTITY http-root "http://ftp.linuxfromscratch.org"> <!ENTITY http-root "http://ftp.linuxfromscratch.org">