Changeset 19f8a62


Ignore:
Timestamp:
03/02/2007 11:23:14 PM (17 years ago)
Author:
Jeremy Huntwork <jhuntwork@…>
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.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/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
09ec1f4
Parents:
40ffa16
Message:

Warnings and important notices about a command that appear after instructions to run it are evil.

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

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r40ffa16 r19f8a62  
    3838
    3939    <listitem>
     40      <para>2007-03-1</para>
     41      <itemizedlist>
     42        <listitem>
     43          <para>[jhuntwork] - Minor grammatical changes. Move some warnings and
     44          notices to appear before affected commands.</para>
     45        </listitem>
     46      </itemizedlist>
     47    </listitem>
     48
     49    <listitem>
    4050      <para>2007-02-25</para>
    4151      <itemizedlist>
  • chapter05/adjusting.xml

    r40ffa16 r19f8a62  
    3333  dumping GCC's <quote>specs</quote> file to a location where GCC will look for it
    3434  by default. A simple <command>sed</command> substitution then alters the
    35   dynamic linker that GCC will use:</para>
     35  dynamic linker that GCC will use.</para>
    3636
    37 <!-- Ampersands are needed to allow copy and paste -->
    38 <screen><userinput>gcc -dumpspecs | sed 's@^/lib/ld-linux.so.2@/tools&amp;@g' \
    39   > `dirname $(gcc -print-libgcc-file-name)`/specs</userinput></screen>
    40 
    41   <para>It is recommended that the above command be copy-and-pasted in order to
    42   ensure accuracy. Be sure to visually inspect the specs file in order to
    43   verify that all occurrences of <quote>/lib/ld-linux.so.2</quote> have been
    44   replaced with <quote>/tools/lib/ld-linux.so.2</quote>.</para>
     37  <para>For the sake of accuracy, it is recommended to use a copy-and-paste
     38  method when issuing the following command. Be sure to visually inspect the
     39  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>
    4541
    4642  <important>
     
    4844    something other than <filename class="libraryfile">ld-linux.so.2</filename>,
    4945    replace <quote>ld-linux.so.2</quote> with the name of the platform's
    50     dynamic linker in the above commands. Refer back to <xref
     46    dynamic linker in the following commands. Refer back to <xref
    5147    linkend="ch-tools-toolchaintechnotes" role=","/> if necessary.</para>
    5248  </important>
     49
     50<!-- Ampersands are needed to allow copy and paste -->
     51<screen><userinput>gcc -dumpspecs | sed 's@^/lib/ld-linux.so.2@/tools&amp;@g' \
     52  > `dirname $(gcc -print-libgcc-file-name)`/specs</userinput></screen>
    5353
    5454  <para>During the build process, GCC runs a script
Note: See TracChangeset for help on using the changeset viewer.