Procházet zdrojové kódy

Alter some --libexecdir options to improve general consistency throughout the book

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7135 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Matthew Burgess před 20 roky
rodič
revize
f684ec6c52

+ 5 - 0
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>
 

+ 2 - 2
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>
 

+ 4 - 4
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>
 

+ 1 - 1
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>