Ignore:
Timestamp:
09/07/2021 08:33:18 PM (3 years ago)
Author:
Pierre Labastie <pierre.labastie@…>
Branches:
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, arm, bdubbs/gcc13, 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:
2c8fdfc
Parents:
c8fb227
Message:

Remove spaces at end o lines - chapter08

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter08/stripping.xml

    rc8fb227 rd672ab7  
    1111  <title>Stripping</title>
    1212
    13   <para>This section is optional.  If the intended user is not a 
     13  <para>This section is optional.  If the intended user is not a
    1414  programmer and does not plan to do
    1515  any debugging on the system software, the system size can be decreased
     
    2525
    2626  <para>The debugging symbols for selected libraries are placed
    27   in separate files.  This debugging information is needed if running 
    28   regression tests that use <ulink 
    29   url='&blfs-book;/general/valgrind.html'>valgrind</ulink> or <ulink 
     27  in separate files.  This debugging information is needed if running
     28  regression tests that use <ulink
     29  url='&blfs-book;/general/valgrind.html'>valgrind</ulink> or <ulink
    3030  url='&blfs-book;/general/gdb.html'>gdb</ulink> later in BLFS.
    3131  </para>
     
    4242
    4343  <note><para>The ELF loader's name is ld-linux-x86-64.so.2 on 64-bit systems
    44   and ld-linux.so.2 on 32-bit systems.  The contruct below selects the 
     44  and ld-linux.so.2 on 32-bit systems.  The contruct below selects the
    4545  correct name for the current architecture.</para></note>
    4646
     
    5151             libc.so.6
    5252             libthread_db.so.1
    53              libquadmath.so.&libquadmath-version; 
     53             libquadmath.so.&libquadmath-version;
    5454             libstdc++.so.&libstdcpp-version;
    55              libitm.so.&libitm-version; 
    56              libatomic.so.&libatomic-version;" 
     55             libitm.so.&libitm-version;
     56             libatomic.so.&libatomic-version;"
    5757
    5858cd /usr/lib
     
    9494         $(find /usr/{bin,sbin,libexec} -type f); do
    9595    case "$online_usrbin $online_usrlib $save_usrlib" in
    96         *$(basename $i)* ) 
     96        *$(basename $i)* )
    9797            ;;
    98         * ) strip --strip-unneeded $i 
     98        * ) strip --strip-unneeded $i
    9999            ;;
    100100    esac
Note: See TracChangeset for help on using the changeset viewer.