diff options
author | Thomas Trepl (Moody) <thomas@linuxfromscratch.org> | 2021-08-13 14:02:00 +0200 |
---|---|---|
committer | Thomas Trepl (Moody) <thomas@linuxfromscratch.org> | 2021-08-13 14:02:00 +0200 |
commit | 3330d51805bbb8dc71d1e828c7db042103b22cb9 (patch) | |
tree | 2d53a094ffc5ef68ea48597f5e511c709d04fa91 | |
parent | eeecd8910fb01e3ae6e37e5bde5c1f9793192bec (diff) |
Fix instructions (add online_usrbin to m32/mx32)
-rw-r--r-- | chapter08/stripping.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chapter08/stripping.xml b/chapter08/stripping.xml index 4eb4143ff..fe2a27b33 100644 --- a/chapter08/stripping.xml +++ b/chapter08/stripping.xml @@ -131,7 +131,7 @@ for i in $(find /usr/lib -type f -name \*.so* ! -name \*dbg) \ esac done</userinput><userinput arch="ml_32,ml_all"> for i in $(find /usr/lib32 -type f -name \*.so* ! -name \*dbg); do - case "$online_usrlib $save_usrlib" in + case "$online_usrbin $online_usrlib $save_usrlib" in *$(basename $i)* ) ;; * ) strip --strip-unneeded $i @@ -139,7 +139,7 @@ for i in $(find /usr/lib32 -type f -name \*.so* ! -name \*dbg); do esac done</userinput><userinput arch="ml_x32,ml_all"> for i in $(find /usr/libx32 -type f -name \*.so* ! -name \*dbg); do - case "$online_usrlib $save_usrlib" in + case "$online_usrbin $online_usrlib $save_usrlib" in *$(basename $i)* ) ;; * ) strip --strip-unneeded $i |