Changeset b465451 for chapter06


Ignore:
Timestamp:
02/19/2005 07:44:24 PM (20 years ago)
Author:
Gerard Beekmans <gerard@…>
Children:
acdb4a6
Parents:
ccb4ec9
Message:

Synchronized Testing with Trunk. Ready to move Testing to Trunk and discontinue Testing.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/testing/BOOK@4643 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Location:
chapter06
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • chapter06/glibc.xml

    rccb4ec9 rb465451  
    4545Glibc autoconf tests would give false results and defeat the goal
    4646of achieving a clean build.</para>
     47
     48<para>The linuxthreads tarball contains the man pages for the
     49threading libraries installed by glibc.  Unpack the tarball from
     50within the glibc source directory:</para>
     51
     52<screen><userinput>tar xjvf /sources/glibc-linuxthreads-&glibc-version;.tar.bz2</userinput></screen>
    4753
    4854<para>The Glibc documentation recommends building Glibc outside of the source
  • chapter06/grub.xml

    rccb4ec9 rb465451  
    5757<screen><userinput>make install
    5858mkdir /boot/grub
    59 cp /usr/share/grub/i386-pc/stage{1,2} /boot/grub</userinput></screen>
     59cp /usr/lib/grub/i386-pc/stage{1,2} /boot/grub</userinput></screen>
    6060
    6161<para>Replace <filename class="directory">i386-pc</filename> with whatever
  • chapter06/iproute2.xml

    rccb4ec9 rb465451  
    4343    <screen><userinput>patch -Np1 -i ../iproute2-&iproute2-patch-version;-remove_db-1.patch</userinput></screen>
    4444
     45<para>The patch below fixes the issue with the newer versions of
     46findutils whose <command>find</command> command will report an error
     47message when its options are not in the proper order.</para>
     48
     49<screen><userinput>patch -Np1 -i ../iproute2-&iproute2-patch-version;-find_update-1.patch</userinput></screen>
     50
     51
    4552    <para>Prepare Iproute2 for compilation:</para>
    4653    <screen><userinput>./configure </userinput></screen>
  • chapter06/libol.xml

    rccb4ec9 rb465451  
    3030<para>Prepare Libol for compilation</para>
    3131
    32 <screen><userinput>./configure --prefix=/usr --enable-shared</userinput></screen>
     32<screen><userinput>./configure --prefix=/usr</userinput></screen>
    3333
    3434<para>Compile the package:</para>
  • chapter06/readjusting.xml

    rccb4ec9 rb465451  
    5858
    5959<screen><userinput>perl -pi -e 's@ /tools/lib/ld-linux.so.2@ /lib/ld-linux.so.2@g;' \
    60     -e 's@\*startfile_prefix_spec:\n@$_/usr/lib/@g;' \
     60    -e 's@\*startfile_prefix_spec:\n@$_/usr/lib/ @g;' \
    6161        `gcc --print-file specs`</userinput></screen>
    6262
  • chapter06/readline.xml

    rccb4ec9 rb465451  
    2929<title>Installation of Readline</title>
    3030
    31 <para>The following patch fixes a problem where Readline sometimes
    32 only shows 33 characters on a line and then wraps to the next
    33 line.</para>
     31<para>The following patch includes a fix for the problem where
     32Readline sometimes only shows 33 characters on a line and then wraps
     33to the next line. It also includes other fixes recommended by the
     34Readline author.</para>
    3435
    35 <screen><userinput>patch -Np1 -i ../readline-&readline-version;-display_wrap-1.patch</userinput></screen>
     36<screen><userinput>patch -Np1 -i ../readline-&readline-version;-fixes-1.patch</userinput></screen>
    3637
    3738<para>Prepare Readline for compilation:</para>
    3839
    39 <screen><userinput>./configure --prefix=/usr</userinput></screen>
     40<screen><userinput>./configure --prefix=/usr --libdir=/lib</userinput></screen>
    4041
    4142<para>Compile the package:</para>
  • chapter06/zlib.xml

    rccb4ec9 rb465451  
    3838<para>Prepare Zlib for compilation:</para>
    3939
    40 <screen><userinput>./configure --prefix=/usr --shared</userinput></screen>
     40<screen><userinput>./configure --prefix=/usr --shared --libdir=/lib</userinput></screen>
    4141
    4242<para>Compile the package:</para>
Note: See TracChangeset for help on using the changeset viewer.