diff options
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/bash-exp.xml | 2 | ||||
-rw-r--r-- | chapter05/binutils-exp.xml | 2 | ||||
-rw-r--r-- | chapter05/installasuser.xml | 2 |
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>&&</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&pasted on the shell, it is important to ensure +commands are copy & 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 |