Ignore:
Timestamp:
05/18/2016 01:47:18 AM (8 years ago)
Author:
DJ Lucas <dj@…>
Children:
09a0ef3e
Parents:
2a60cf45
Message:

Merged from trunk to r11067.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/systemd@11068 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/strippingagain.xml

    r2a60cf45 r121f4cc  
    4040  <para>Now the binaries and libraries can be safely stripped:</para>
    4141
    42 <screen><userinput>/tools/bin/find /{,usr/}{bin,lib,sbin} -type f \
    43     -exec /tools/bin/strip --strip-debug '{}' ';'</userinput></screen>
     42<screen><userinput>/tools/bin/find /usr/lib -type f -name \*.a \
     43   -exec /tools/bin/strip --strip-debug {} ';'
     44
     45/tools/bin/find /lib /usr/lib -type f -name \*.so* \
     46   -exec /tools/bin/strip --strip-unneeded {} ';'
     47
     48/tools/bin/find /{bin,sbin} /usr/{bin,sbin,libexec} -type f \
     49    -exec /tools/bin/strip --strip-all {} ';'</userinput></screen>
    4450
    4551  <para>A large number of files will be reported as having their file
Note: See TracChangeset for help on using the changeset viewer.