Changeset f19e766


Ignore:
Timestamp:
06/24/2007 01:03:35 PM (17 years ago)
Author:
Ken Moffat <ken@…>
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, 12.2, 12.2-rc1, 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, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/loongarch-12.2, xry111/mips64el, xry111/multilib, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
04d5efb
Parents:
ea14853
Message:

Add missing colons wherever we expect the builder to key in the userinput.

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

Files:
14 edited

Legend:

Unmodified
Added
Removed
  • chapter05/adjusting.xml

    rea14853 rf19e766  
    2020  original linker, then replace it with the adjusted linker. We'll also
    2121  create a link to its counterpart in <filename class="directory">
    22   /tools/$(gcc -dumpmachine)/bin</filename></para>
     22  /tools/$(gcc -dumpmachine)/bin</filename>:</para>
    2323
    2424<screen><userinput>mv -v /tools/bin/{ld,ld-old}
     
    3838  method when issuing the following command. Be sure to visually inspect the
    3939  specs file and verify that all occurrences of <quote>/lib/ld-linux.so.2</quote>
    40   have been replaced with <quote>/tools/lib/ld-linux.so.2</quote>.</para>
     40  have been replaced with <quote>/tools/lib/ld-linux.so.2</quote>:</para>
    4141
    4242  <important>
  • chapter05/expect.xml

    rea14853 rf19e766  
    4444    instead of a <filename>/usr/local/bin/stty</filename> it may find on the host system.
    4545    This will ensure that our testsuite tools remain sane for the final builds of our
    46     toolchain.</para>
     46    toolchain:</para>
    4747
    4848<screen><userinput>cp configure{,.bak}
  • chapter05/gcc-pass1.xml

    rea14853 rf19e766  
    132132    systems where the GNU C compiler is not always installed. Running
    133133    <command>cc</command> leaves the system administrator free to decide
    134     which C compiler to install.</para>
     134    which C compiler to install:</para>
    135135
    136136<screen><userinput>ln -vs gcc /tools/bin/cc</userinput></screen>
  • chapter05/gcc-pass2.xml

    rea14853 rf19e766  
    7979    Non-bootstrap builds omit this flag by default, so apply the following
    8080    <command>sed</command> to use it in order to ensure consistent compiler
    81     builds.</para>
     81    builds:</para>
    8282
    8383<screen><userinput>cp -v gcc/Makefile.in{,.tmp} &amp;&amp;
  • chapter06/bison.xml

    rea14853 rf19e766  
    4242    internationalization of error messages if a <command>bison</command>
    4343    program is not already in $PATH.  The following addition will correct
    44     this.</para>
     44    this:</para>
    4545
    4646<screen><userinput>echo '#define YYENABLE_NLS 1' &gt;&gt; config.h</userinput></screen>
  • chapter06/createfiles.xml

    rea14853 rf19e766  
    3838  order to satisfy these programs, create a number of symbolic links which will be
    3939  replaced by real files throughout the course of this chapter after the software
    40   has been installed.</para>
     40  has been installed:</para>
    4141
    4242<screen><userinput>ln -sv /tools/bin/{bash,cat,grep,pwd,stty} /bin
     
    110110  <filename>/etc/passwd</filename> and <filename>/etc/group</filename>
    111111  files have been created, user name and group name resolution will now
    112   work.</para>
     112  work:</para>
    113113
    114114<screen role="nodump"><userinput>exec /tools/bin/bash --login +h</userinput></screen>
  • chapter06/gcc.xml

    rea14853 rf19e766  
    4747    Non-bootstrap builds omit this flag by default, so apply the following
    4848    <command>sed</command> to use it in order to ensure consistent compiler
    49     builds.</para>
     49    builds:</para>
    5050
    5151<screen><userinput>sed -i 's/^XCFLAGS =$/&amp; -fomit-frame-pointer/' gcc/Makefile.in</userinput></screen>
     
    6363    This will cause the script to fall back to using less random names for
    6464    temporary files.  We will be installing mktemp later, so the following sed
    65     will simulate its presence.</para>
     65    will simulate its presence:</para>
    6666
    6767<screen><userinput>sed -i 's/@have_mktemp_command@/yes/' gcc/gccbug.in</userinput></screen>
  • chapter06/gzip.xml

    rea14853 rf19e766  
    5151<screen><userinput>make install</userinput></screen>
    5252
    53     <para>Move some programs that do not need to be on the root filesystem.</para>
     53    <para>Move some programs that do not need to be on the root filesystem:</para>
    5454
    5555<screen><userinput>mv -v /bin/{gzexe,uncompress,zcmp,zdiff,zegrep} /usr/bin
  • chapter06/man-db.xml

    rea14853 rf19e766  
    118118    and traditional locales.  Because this script is intended for limited use
    119119    during the system build, for public data, we will not bother with error
    120     checking, nor use a non-predictable temporary file name.</para>
     120    checking, nor use a non-predictable temporary file name:</para>
    121121
    122122<screen><userinput>cat &gt;&gt; convert-mans &lt;&lt; "EOF"
  • chapter06/patch.xml

    rea14853 rf19e766  
    3737    <title>Installation of Patch</title>
    3838
    39     <para>Prepare Patch for compilation.</para>
     39    <para>Prepare Patch for compilation:</para>
    4040
    4141<screen><userinput>./configure --prefix=/usr</userinput></screen>
  • chapter06/perl.xml

    rea14853 rf19e766  
    3838    <para>First create a basic <filename>/etc/hosts</filename> file which will be
    3939    referenced in one of Perl's configuration files as well as being used used by
    40     the testsuite if you run that.</para>
     40    the testsuite if you run that:</para>
    4141
    4242<screen><userinput>echo "127.0.0.1 localhost $(hostname)" &gt; /etc/hosts</userinput></screen>
  • chapter06/readjusting.xml

    rea14853 rf19e766  
    2626  and replace it with the adjusted linker we made in chapter 5. We'll also create
    2727  a link to its counterpart in <filename class="directory">/tools/$(gcc
    28   -dumpmachine)/bin</filename>.</para>
     28  -dumpmachine)/bin</filename>:</para>
    2929
    3030<screen><userinput>mv -v /tools/bin/{ld,ld-old}
     
    3636  dynamic linker, and so that GCC knows where to find the correct headers
    3737  and Glibc start files. A <command>sed</command> command accomplishes
    38   this.</para>
     38  this:</para>
    3939
    4040  <important>
  • chapter06/shadow.xml

    rea14853 rf19e766  
    8282    <para>Shadow supplies other manual pages in a UTF-8 encoding.  Man-DB
    8383    can display these in the recommended encodings by using the
    84     <command>convert-mans</command> script which we installed.</para>
     84    <command>convert-mans</command> script which we installed:</para>
    8585
    8686<screen><userinput>for i in de es fi fr id it pt_BR; do
     
    102102    obsolete <filename class="directory">/var/spool/mail</filename> location
    103103    for user mailboxes that Shadow uses by default to the <filename
    104     class="directory">/var/mail</filename> location used currently.</para>
     104    class="directory">/var/mail</filename> location used currently:</para>
    105105
    106106<screen><userinput>sed -i -e 's@#MD5_CRYPT_ENAB.no@MD5_CRYPT_ENAB yes@' \
  • chapter07/console.xml

    rea14853 rf19e766  
    154154      framebuffer and can live without characters not belonging to his language,
    155155      it is still possible to use a language-specific 256-glyph font, as
    156       illustrated below.</para>
     156      illustrated below:</para>
    157157
    158158<screen role="nodump"><userinput>cat &gt; /etc/sysconfig/console &lt;&lt; "EOF"
Note: See TracChangeset for help on using the changeset viewer.