From b8d5542c282d454d6f69cc6bce5a31afd8f27b5f Mon Sep 17 00:00:00 2001 From: "Thomas Trepl (Moody)" Date: Sat, 7 Aug 2021 17:05:32 +0200 Subject: [PATCH] Fix syntax errors caused by jhalfs xsls --- chapter08/strippingagain.xml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/chapter08/strippingagain.xml b/chapter08/strippingagain.xml index c7b79d65c..626cd6d11 100644 --- a/chapter08/strippingagain.xml +++ b/chapter08/strippingagain.xml @@ -133,14 +133,18 @@ for i in $(find /usr/lib -type f -name \*.so* ! -name \*dbg) \ done for i in $(find /usr/lib32 -type f -name \*.so* ! -name \*dbg); do case "$online_usrlib $save_usrlib" in - *$(basename $i)* ) ;; - * ) strip --strip-unneeded $i ;; + *$(basename $i)* ) + ;; + * ) strip --strip-unneeded $i + ;; esac done for i in $(find /usr/libx32 -type f -name \*.so* ! -name \*dbg); do case "$online_usrlib $save_usrlib" in - *$(basename $i)* ) ;; - * ) strip --strip-unneeded $i ;; + *$(basename $i)* ) + ;; + * ) strip --strip-unneeded $i + ;; esac done