Ver código fonte

Zack's patches: added --with-included-regex to grep and linux manpage installation.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2566 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Timothy Bauscher 22 anos atrás
pai
commit
41d1d0e923
3 arquivos alterados com 17 adições e 1 exclusões
  1. 7 0
      chapter01/changelog.xml
  2. 8 0
      chapter06/glibc-inst.xml
  3. 2 1
      chapter06/grep-inst.xml

+ 7 - 0
chapter01/changelog.xml

@@ -71,6 +71,13 @@
 <listitem><para>May 11th, 2003 [timothy]: Chapter 5 &amp; 6 - Installing
 Bzip2, Installing Zlib: Modified build commands per bug #524.</para></listitem>
 
+<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing Glibc:
+Install the linuxthreads man pages, too. This got lost somewhere.</para></listitem>
+
+<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing Grep:
+Added --with-included-regex to prevent Grep from using Glibc's somewhat
+bugged regex.</para></listitem>
+
 <listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing Coreutils:
 Fix some functionality of the uname command with a patch.</para></listitem>
 

+ 8 - 0
chapter06/glibc-inst.xml

@@ -74,6 +74,14 @@ locales which you need or want. This can be achieved using the localedef
 command. Information on this can be found in the <filename>INSTALL</filename>
 file in the <filename>glibc-&glibc-version;</filename> tree.</para>
 
+<para>Build the linuxthreads man pages:</para>
+
+<para><screen><userinput>make -C ../glibc-2.3.2/linuxthreads/man</userinput></screen></para>
+
+<para>Install the man pages:</para>
+
+<para><screen><userinput>make -C ../glibc-2.3.2/linuxthreads/man install</userinput></screen></para>
+
 <para>To finish off the installation we'll reload Bash so it will use the new
 <filename>libnss_*</filename> files. This will also get rid of the
 <emphasis>I have no name!</emphasis> message in the command prompt:</para>

+ 2 - 1
chapter06/grep-inst.xml

@@ -5,7 +5,8 @@
 
 <para>Prepare Grep to be compiled:</para>
 
-<para><screen><userinput>./configure --prefix=/usr --bindir=/bin</userinput></screen></para>
+<para><screen><userinput>./configure --prefix=/usr --bindir=/bin&amp;&amp;
+&nbsp;&nbsp;&nbsp;&nbsp;--with-included-regex</userinput></screen></para>
 
 <para>Continue with compiling the package:</para>