Ignore:
Timestamp:
08/23/2022 07:40:37 PM (20 months ago)
Author:
Thomas Trepl (Moody) <thomas@…>
Branches:
multilib
Children:
d8c9a43f
Parents:
192dda3 (diff), fd4792b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'multilib' of git.linuxfromscratch.org:lfs into multilib

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter08/stripping.xml

    r192dda3 rf8a51225  
    139139    esac
    140140done</userinput><userinput arch="ml_32,ml_all">
    141 for i in $(find /usr/lib32 -type f -name \*.so* ! -name \*dbg); do
     141for i in $(find /usr/lib32 -type f -name \*.so* ! -name \*dbg) \
     142         $(find /usr/lib32 -type f -name \*.a); do
    142143    case "$online_usrbin $online_usrlib $save_usrlib" in
    143144        *$(basename $i)* )
     
    147148    esac
    148149done</userinput><userinput arch="ml_x32,ml_all">
    149 for i in $(find /usr/libx32 -type f -name \*.so* ! -name \*dbg); do
     150for i in $(find /usr/libx32 -type f -name \*.so* ! -name \*dbg) \
     151         $(find /usr/libx32 -type f -name \*.a); do
    150152    case "$online_usrbin $online_usrlib $save_usrlib" in
    151153        *$(basename $i)* )
Note: See TracChangeset for help on using the changeset viewer.