aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
authorTimothy Bauscher <timothy@linuxfromscratch.org>2002-09-18 18:31:39 +0000
committerTimothy Bauscher <timothy@linuxfromscratch.org>2002-09-18 18:31:39 +0000
commit60ed866798672201b1e79c15a8f38e4f7f76a9a1 (patch)
treef14e7aa45bfd86f16e0601212417a0d71edbf844 /chapter06
parent8d8ab633a0bf92e5f9f95518616120b4d82a5d5a (diff)
Fixed typos, removed old command explanation.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2114 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/gcc-exp.xml13
-rw-r--r--chapter06/ncurses-exp.xml5
2 files changed, 5 insertions, 13 deletions
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>