aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Trepl (Moody) <thomas@linuxfromscratch.org>2021-08-13 14:02:00 +0200
committerThomas Trepl (Moody) <thomas@linuxfromscratch.org>2021-08-13 14:02:00 +0200
commit3330d51805bbb8dc71d1e828c7db042103b22cb9 (patch)
tree2d53a094ffc5ef68ea48597f5e511c709d04fa91
parenteeecd8910fb01e3ae6e37e5bde5c1f9793192bec (diff)
Fix instructions (add online_usrbin to m32/mx32)
-rw-r--r--chapter08/stripping.xml4
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