aboutsummaryrefslogtreecommitdiffstats
path: root/chapter05
diff options
context:
space:
mode:
authorTimothy Bauscher <timothy@linuxfromscratch.org>2002-09-23 18:35:06 +0000
committerTimothy Bauscher <timothy@linuxfromscratch.org>2002-09-23 18:35:06 +0000
commit764d8f4d378f3bb4828e529057b0990297f8e28e (patch)
tree8395633182130a6606d7336223f974171792f19d /chapter05
parent639a66c82c1958d7795167f50e52edfaf3f67962 (diff)
Applied Bill Maltby's grammatic-fixes patch.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2130 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r--chapter05/bash-exp.xml2
-rw-r--r--chapter05/binutils-exp.xml2
-rw-r--r--chapter05/installasuser.xml2
3 files changed, 3 insertions, 3 deletions
diff --git a/chapter05/bash-exp.xml b/chapter05/bash-exp.xml
index c6ea2db4e..ba7b375c1 100644
--- a/chapter05/bash-exp.xml
+++ b/chapter05/bash-exp.xml
@@ -24,7 +24,7 @@ there.</para>
<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
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
fails, that make install isn't executed, and so forth.</para>
diff --git a/chapter05/binutils-exp.xml b/chapter05/binutils-exp.xml
index a1a226d35..8bc95d288 100644
--- a/chapter05/binutils-exp.xml
+++ b/chapter05/binutils-exp.xml
@@ -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
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
static programs and nls often causes problems when you're linking
statically.</para>
diff --git a/chapter05/installasuser.xml b/chapter05/installasuser.xml
index 16372861a..d7cdbe546 100644
--- a/chapter05/installasuser.xml
+++ b/chapter05/installasuser.xml
@@ -45,7 +45,7 @@ in previous chapters already. $LC_ALL is a variable that is used for
internationalization.</para>
<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
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