aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chapter01/changelog.xml5
-rw-r--r--chapter05/gcc-pass1.xml4
-rw-r--r--chapter05/gcc-pass2.xml8
-rw-r--r--chapter06/findutils.xml2
4 files changed, 12 insertions, 7 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml
index 3f2963319..2d22b3873 100644
--- a/chapter01/changelog.xml
+++ b/chapter01/changelog.xml
@@ -116,6 +116,11 @@ First a summary, then a detailed log.</para>
</itemizedlist>
</listitem>
+<listitem><para>November 7, 2005 [matt]: Remove the --libexecdir option from
+both passes of GCC in chapter 5 (fixes bug 1646). Also change the --libexecdir
+option for Findutils to conform with the /usr/lib/packagename convention already
+prevalent in the book (fixes bug 1644).</para></listitem>
+
<listitem><para>November 6, 2005 [matt]: Remove the optimization related
warnings from the toolchain packages (bug 1650).</para></listitem>
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml
index 10f801167..b6138fb7a 100644
--- a/chapter05/gcc-pass1.xml
+++ b/chapter05/gcc-pass1.xml
@@ -38,8 +38,8 @@ cd ../gcc-build</userinput></screen>
<para>Prepare GCC for compilation:</para>
<screen><userinput>../gcc-&gcc-version;/configure --prefix=/tools \
- --libexecdir=/tools/lib --with-local-prefix=/tools \
- --disable-nls --enable-shared --enable-languages=c</userinput></screen>
+ --with-local-prefix=/tools --disable-nls --enable-shared \
+ --enable-languages=c</userinput></screen>
<para>The meaning of the configure options:</para>
diff --git a/chapter05/gcc-pass2.xml b/chapter05/gcc-pass2.xml
index f62886115..46e888423 100644
--- a/chapter05/gcc-pass2.xml
+++ b/chapter05/gcc-pass2.xml
@@ -102,10 +102,10 @@ variables that override the default optimization flags.</para>
<para>Now prepare GCC for compilation:</para>
<screen><userinput>../gcc-&gcc-version;/configure --prefix=/tools \
- --libexecdir=/tools/lib --with-local-prefix=/tools \
- --enable-clocale=gnu --enable-shared \
- --enable-threads=posix --enable-__cxa_atexit \
- --enable-languages=c,c++ --disable-libstdcxx-pch</userinput></screen>
+ --with-local-prefix=/tools --enable-clocale=gnu \
+ --enable-shared --enable-threads=posix \
+ --enable-__cxa_atexit --enable-languages=c,c++ \
+ --disable-libstdcxx-pch</userinput></screen>
<para>The meaning of the new configure options:</para>
diff --git a/chapter06/findutils.xml b/chapter06/findutils.xml
index 61674c1e9..a3f823703 100644
--- a/chapter06/findutils.xml
+++ b/chapter06/findutils.xml
@@ -35,7 +35,7 @@ Diffutils, GCC, Gettext, Glibc, Grep, Make and Sed</seg></seglistitem>
<para>Prepare Findutils for compilation:</para>
-<screen><userinput>./configure --prefix=/usr --libexecdir=/usr/lib/locate \
+<screen><userinput>./configure --prefix=/usr --libexecdir=/usr/lib/findutils \
--localstatedir=/var/lib/locate</userinput></screen>
<para>The meaning of the configure options:</para>