Ignore:
Timestamp:
09/18/2007 09:11:00 PM (17 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
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.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, 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:
e1ad8a8
Parents:
a7a0238
Message:

Added remap attributes to userinput tags in packages pages.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/glibc.xml

    ra7a0238 r0445a3d  
    6868    Unpack the tarball from within the Glibc source directory:</para>
    6969
    70 <screen><userinput>tar -xvf ../glibc-libidn-&glibc-version;.tar.gz
     70<screen><userinput remap="pre">tar -xvf ../glibc-libidn-&glibc-version;.tar.gz
    7171mv glibc-libidn-&glibc-version; libidn</userinput></screen>
    7272
     
    7676    problem:</para>
    7777
    78 <screen><userinput>sed -i '/vi_VN.TCVN/d' localedata/SUPPORTED</userinput></screen>
     78<screen><userinput remap="pre">sed -i '/vi_VN.TCVN/d' localedata/SUPPORTED</userinput></screen>
    7979
    8080    <para>When running <command>make install</command>, a script called
     
    8585    to check the Glibc we have just installed with the following:</para>
    8686
    87 <screen><userinput>sed -i \
     87<screen><userinput remap="pre">sed -i \
    8888's|libs -o|libs -L/usr/lib -Wl,-dynamic-linker=/lib/ld-linux.so.2 -o|' \
    8989        scripts/test-installation.pl</userinput></screen>
     
    9595    chapter of the BLFS book:</para>
    9696
    97 <screen><userinput>sed -i 's|@BASH@|/bin/bash|' elf/ldd.bash.in</userinput></screen>
     97<screen><userinput remap="pre">sed -i 's|@BASH@|/bin/bash|' elf/ldd.bash.in</userinput></screen>
    9898
    9999    <para>The Glibc documentation recommends building Glibc outside of the source
    100100    directory in a dedicated build directory:</para>
    101101
    102 <screen><userinput>mkdir -v ../glibc-build
     102<screen><userinput remap="pre">mkdir -v ../glibc-build
    103103cd ../glibc-build</userinput></screen>
    104104
    105105    <para>Again, add the needed compiler flag to CFLAGS:</para>
    106106
    107 <screen><userinput>echo "CFLAGS += -march=i486" &gt; configparms</userinput></screen>
     107<screen><userinput remap="configure">echo "CFLAGS += -march=i486" &gt; configparms</userinput></screen>
    108108
    109109    <para>Prepare Glibc for compilation:</para>
    110110
    111 <screen><userinput>../glibc-&glibc-version;/configure --prefix=/usr \
     111<screen><userinput remap="configure">../glibc-&glibc-version;/configure --prefix=/usr \
    112112    --disable-profile --enable-add-ons \
    113113    --enable-kernel=2.6.0 --libexecdir=/usr/lib/glibc</userinput></screen>
     
    130130    <para>Compile the package:</para>
    131131
    132 <screen><userinput>make</userinput></screen>
     132<screen><userinput remap="make">make</userinput></screen>
    133133
    134134    <important>
     
    139139    <para>Test the results:</para>
    140140
    141 <screen><userinput>make -k check 2&gt;&amp;1 | tee glibc-check-log
     141<screen><userinput remap="test">make -k check 2&gt;&amp;1 | tee glibc-check-log
    142142grep Error glibc-check-log</userinput></screen>
    143143
     
    181181    Prevent this warning with:</para>
    182182
    183 <screen><userinput>touch /etc/ld.so.conf</userinput></screen>
     183<screen><userinput remap="install">touch /etc/ld.so.conf</userinput></screen>
    184184
    185185    <para>Install the package:</para>
    186186
    187 <screen><userinput>make install</userinput></screen>
     187<screen><userinput remap="install">make install</userinput></screen>
    188188
    189189    <para>The locales that can make the system respond in a different language
     
    203203    locales necessary for the optimal coverage of tests:</para>
    204204
    205 <screen role="nodump"><userinput>mkdir -pv /usr/lib/locale
     205<screen role="nodump"><userinput remap="locale-test">mkdir -pv /usr/lib/locale
    206206localedef -i de_DE -f ISO-8859-1 de_DE
    207207localedef -i de_DE@euro -f ISO-8859-15 de_DE@euro
     
    226226    following time-consuming command:</para>
    227227
    228 <screen><userinput>make localedata/install-locales</userinput></screen>
     228<screen><userinput remap="locale-full">make localedata/install-locales</userinput></screen>
    229229
    230230    <para>Then use the <command>localedef</command> command to create and
Note: See TracChangeset for help on using the changeset viewer.