Changeset 71eb6ac for chapter06


Ignore:
Timestamp:
07/25/2007 01:58:03 AM (17 years ago)
Author:
Jeremy Huntwork <jhuntwork@…>
Children:
f88b3c5
Parents:
dde6e423
Message:

Merged r8225, r8230, r8231, r8233, r8234, r8235, r8238, r8242 and r8244 from trunk to x86_64 branch.

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

Location:
chapter06
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • chapter06/bash.xml

    rdde6e423 r71eb6ac  
    3838    HTML documentation, issue the following commands:</para>
    3939
    40 <screen><userinput>tar -xvf ../bash-doc-&bash-doc-version;.tar.gz &amp;&amp;
     40<screen><userinput>tar -xvf ../bash-doc-&bash-doc-version;.tar.gz
    4141sed -i "s|htmldir = @htmldir@|htmldir = /usr/share/doc/bash-&bash-version;|" \
    4242    Makefile.in</userinput></screen>
  • chapter06/createfiles.xml

    rdde6e423 r71eb6ac  
    4040  has been installed:</para>
    4141
    42 <screen><userinput>ln -sv /tools/bin/{bash,cat,grep,pwd,stty} /bin
     42<screen><userinput>ln -sv /tools/bin/{bash,cat,echo,grep,pwd,stty} /bin
    4343ln -sv /tools/bin/perl /usr/bin
    4444ln -sv /tools/lib/libgcc_s.so{,.1} /usr/lib
  • chapter06/db.xml

    rdde6e423 r71eb6ac  
    6363    <para>Prepare Berkeley DB for compilation:</para>
    6464
    65 <screen><userinput>cd build_unix &amp;&amp;
     65<screen><userinput>cd build_unix
    6666../dist/configure --prefix=/usr --enable-compat185 --enable-cxx</userinput></screen>
    6767
  • chapter06/glibc.xml

    rdde6e423 r71eb6ac  
    143143
    144144    <itemizedlist>
     145      <!-- Check again after updating from gcc-4.1.x -->
     146      <listitem>
     147        <para>The <emphasis>nptl/tst-cancel1</emphasis> test will fail when
     148        using the 4.1 series of GCC.</para>
     149      </listitem>
     150      <!-- Was true in glibc-2.3.6 -->
    145151      <listitem>
    146152        <para>The <emphasis>nptl/tst-clock2</emphasis> and
  • chapter06/man-db.xml

    rdde6e423 r71eb6ac  
    4242    UTF-8 locales:</para>
    4343
    44 <screen><userinput>mv man/de{_DE.88591,} &amp;&amp;
    45 mv man/es{_ES.88591,} &amp;&amp;
    46 mv man/it{_IT.88591,} &amp;&amp;
    47 mv man/ja{_JP.eucJP,} &amp;&amp;
     44<screen><userinput>mv man/de{_DE.88591,}
     45mv man/es{_ES.88591,}
     46mv man/it{_IT.88591,}
     47mv man/ja{_JP.eucJP,}
    4848sed -i 's,\*_\*,??,' man/Makefile.in</userinput></screen>
    4949
     
    299299    installed with the following command:</para>
    300300
    301 <screen role="nodump"><userinput>mkdir -p /usr/share/man/fr &amp;&amp;
     301<screen role="nodump"><userinput>mkdir -p /usr/share/man/fr
    302302cp -rv man? /usr/share/man/fr</userinput></screen>
    303303
  • chapter06/module-init-tools.xml

    rdde6e423 r71eb6ac  
    4545    tree, as the source gets recompiled as part of the testing process):</para>
    4646
    47 <screen><userinput>./configure &amp;&amp;
    48 make check &amp;&amp;
     47<screen><userinput>./configure
     48make check
    4949make distclean</userinput></screen>
    5050
  • chapter06/ncurses.xml

    rdde6e423 r71eb6ac  
    122122    echo "INPUT(-l${lib}w)" &gt;/usr/lib/lib${lib}.so ; \
    123123    ln -sfv lib${lib}w.a /usr/lib/lib${lib}.a ; \
    124 done &amp;&amp;
     124done
    125125ln -sfv libncurses++w.a /usr/lib/libncurses++.a</userinput></screen>
    126126
     
    129129    buildable:</para>
    130130
    131 <screen><userinput>echo "INPUT(-lncursesw)" &gt;/usr/lib/libcursesw.so &amp;&amp;
    132 ln -sfv libncurses.so /usr/lib/libcurses.so &amp;&amp;
    133 ln -sfv libncursesw.a /usr/lib/libcursesw.a &amp;&amp;
     131<screen><userinput>rm -vf /usr/lib/libcursesw.so
     132echo "INPUT(-lncursesw)" &gt;/usr/lib/libcursesw.so
     133ln -sfv libncurses.so /usr/lib/libcurses.so
     134ln -sfv libncursesw.a /usr/lib/libcursesw.a
    134135ln -sfv libncurses.a /usr/lib/libcurses.a</userinput></screen>
    135136
     
    141142      commands:</para>
    142143
    143 <screen role="nodump"><userinput>make distclean &amp;&amp;
     144<screen role="nodump"><userinput>make distclean
    144145./configure --prefix=/usr --with-shared --without-normal \
    145   --without-debug --without-cxx-binding &amp;&amp;
    146 make sources libs &amp;&amp;
     146  --without-debug --without-cxx-binding
     147make sources libs
    147148cp -av lib/lib*.so.5* /usr/lib</userinput></screen>
    148149    </note>
Note: See TracChangeset for help on using the changeset viewer.