Changeset 243d49a


Ignore:
Timestamp:
05/09/2003 09:36:26 AM (21 years ago)
Author:
Timothy Bauscher <timothy@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, v5_0, v5_1, v5_1_1, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
585ce08
Parents:
5b2a34d
Message:

XML fixes and nbsp fix for lfscmd.

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

Files:
7 edited

Legend:

Unmodified
Added
Removed
  • chapter05/gettext-inst.xml

    r5b2a34d r243d49a  
    44<title>Installation of Gettext</title>
    55
    6 <para><screen><userinput>CFLAGS="-O2 -pipe" ./configure --prefix=/stage1 &&
    7 make LDFLAGS="-s" &&
     6<para><screen><userinput>CFLAGS="-O2 -pipe" ./configure --prefix=/stage1 &amp;&amp;
     7make LDFLAGS="-s" &amp;&amp;
    88make check
    99make install</userinput></screen></para>
  • chapter05/lockingglibc.xml

    r5b2a34d r243d49a  
    1212<para>You can remove the binutils-* directories now.</para>
    1313
    14 <para><screen><userinput>SPECFILE=/stage1/lib/gcc-lib/i686-pc-linux-gnu/*/specs &&
    15 cp ${SPECFILE} ./XX &&
    16 sed 's@/lib/ld-linux.so.2@/stage1/lib/ld-linux.so.2@g' ./XX > ${SPECFILE} &&
    17 unset SPECFILE &&
     14<para><screen><userinput>SPECFILE=/stage1/lib/gcc-lib/i686-pc-linux-gnu/*/specs &amp;&amp;
     15cp ${SPECFILE} ./XX &amp;&amp;
     16sed 's@/lib/ld-linux.so.2@/stage1/lib/ld-linux.so.2@g' ./XX > ${SPECFILE} &amp;&amp;
     17unset SPECFILE &amp;&amp;
    1818rm -f ./XX</userinput></screen></para>
    1919
  • chapter05/ncurses-inst.xml

    r5b2a34d r243d49a  
    66<para><screen><userinput>patch -Np1 -i ../ncurses-&ncurses-version;-etip-2.patch
    77patch -Np1 -i ../ncurses-&ncurses-version;-vsscanf.patch
    8 ./configure --prefix=/stage1 --with-shared --without-debug --without-ada &&
    9 make &&
     8./configure --prefix=/stage1 --with-shared --without-debug --without-ada &amp;&amp;
     9make &amp;&amp;
    1010make install
    11 chmod 755 /stage1/lib/*.5.3 &&
     11chmod 755 /stage1/lib/*.5.3 &amp;&amp;
    1212ln -s libncurses.a /stage1/lib/libcurses.a
    1313ln -sf /stage1/lib/libncurses.so.5 /stage1/lib/libcurses.so</userinput></screen></para>
  • chapter05/perl-inst.xml

    r5b2a34d r243d49a  
    44
    55<para><screen><userinput>patch -Np1 -i ../perl-&perl-version;-libc.patch
    6 ./configure.gnu --prefix=/stage1 -Doptimize='-O2 -pipe' &&
     6./configure.gnu --prefix=/stage1 -Doptimize='-O2 -pipe' &amp;&amp;
    77make perl
    8 make utilities &&
    9 cp perl /stage1/bin/perl &&
    10 cp pod/pod2man /stage1/bin &&
    11 mkdir -p /stage1/lib/perl5/5.8.0 &&
     8make utilities &amp;&amp;
     9cp perl /stage1/bin/perl &amp;&amp;
     10cp pod/pod2man /stage1/bin &amp;&amp;
     11mkdir -p /stage1/lib/perl5/5.8.0 &amp;&amp;
    1212cp -R lib/* /stage1/lib/perl5/5.8.0</userinput></screen></para>
    1313
  • chapter06/adjustingtoolchain.xml

    r5b2a34d r243d49a  
    55<para><screen><userinput>cd binutils-build
    66make -C ld INSTALL=/stage1/bin/install install-data-local
    7 SPECFILE=/stage1/lib/gcc-lib/i686-pc-linux-gnu/*/specs &&
    8 cp ${SPECFILE} ./XX &&
    9 sed 's@/stage1/lib/ld-linux.so.2@/lib/ld-linux.so.2@g' ./XX > ${SPECFILE} &&
    10 unset SPECFILE &&
     7SPECFILE=/stage1/lib/gcc-lib/i686-pc-linux-gnu/*/specs &amp;&amp;
     8cp ${SPECFILE} ./XX &amp;&amp;
     9sed 's@/stage1/lib/ld-linux.so.2@/lib/ld-linux.so.2@g' ./XX > ${SPECFILE} &amp;&amp;
     10unset SPECFILE &amp;&amp;
    1111rm -f ./XX</userinput></screen></para>
    1212
  • chapter06/coreutils-inst.xml

    r5b2a34d r243d49a  
    77make
    88make install
    9 mv /usr/bin/{basename,cat,chgrp,chmod,chown,cp,dd,df} /bin &&
    10 mv /usr/bin/{dir,dircolors,du,date,echo,false,head} /bin &&
    11 mv /usr/bin/{install,ln,ls,mkdir,mkfifo,mknod,mv,pwd} /bin &&
    12 mv /usr/bin/{rm,rmdir,shred,sync,sleep,stty,su,test} /bin &&
     9mv /usr/bin/{basename,cat,chgrp,chmod,chown,cp,dd,df} /bin &amp;&amp;
     10mv /usr/bin/{dir,dircolors,du,date,echo,false,head} /bin &amp;&amp;
     11mv /usr/bin/{install,ln,ls,mkdir,mkfifo,mknod,mv,pwd} /bin &amp;&amp;
     12mv /usr/bin/{rm,rmdir,shred,sync,sleep,stty,su,test} /bin &amp;&amp;
    1313mv /usr/bin/{touch,true,uname,vdir} /bin
    1414mv /usr/bin/chroot /usr/sbin
  • index.xml

    r5b2a34d r243d49a  
    77<!ENTITY version "20030507">
    88<!ENTITY releasedate "May 7th, 2003">
     9<!ENTITY nbsp " ">
    910
    1011<!ENTITY ftp-root "ftp://ftp.linuxfromscratch.org">
Note: See TracChangeset for help on using the changeset viewer.