Changeset b8d5542


Ignore:
Timestamp:
08/07/2021 03:05:32 PM (3 years ago)
Author:
Thomas Trepl (Moody) <thomas@…>
Branches:
ml-11.0, multilib
Children:
835c1c8
Parents:
81f8f6e
Message:

Fix syntax errors caused by jhalfs xsls

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter08/strippingagain.xml

    r81f8f6e rb8d5542  
    134134for i in $(find /usr/lib32 -type f -name \*.so* ! -name \*dbg); do
    135135    case "$online_usrlib $save_usrlib" in
    136         *$(basename $i)* ) ;;
    137         * ) strip --strip-unneeded $i ;;
     136        *$(basename $i)* )
     137            ;;
     138        * ) strip --strip-unneeded $i
     139            ;;
    138140    esac
    139141done</userinput><userinput arch="ml_x32,ml_all">
    140142for i in $(find /usr/libx32 -type f -name \*.so* ! -name \*dbg); do
    141143    case "$online_usrlib $save_usrlib" in
    142         *$(basename $i)* ) ;;
    143         * ) strip --strip-unneeded $i ;;
     144        *$(basename $i)* )
     145            ;;
     146        * ) strip --strip-unneeded $i
     147            ;;
    144148    esac
    145149done</userinput><userinput>
Note: See TracChangeset for help on using the changeset viewer.