From 3330d51805bbb8dc71d1e828c7db042103b22cb9 Mon Sep 17 00:00:00 2001 From: "Thomas Trepl (Moody)" Date: Fri, 13 Aug 2021 14:02:00 +0200 Subject: [PATCH] Fix instructions (add online_usrbin to m32/mx32) --- chapter08/stripping.xml | 4 ++-- 1 file 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 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 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