mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-02-08 15:23:24 +00:00
Fix syntax errors caused by jhalfs xsls
This commit is contained in:
parent
81f8f6e436
commit
b8d5542c28
@ -133,14 +133,18 @@ for i in $(find /usr/lib -type f -name \*.so* ! -name \*dbg) \
|
||||
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
|
||||
*$(basename $i)* ) ;;
|
||||
* ) strip --strip-unneeded $i ;;
|
||||
*$(basename $i)* )
|
||||
;;
|
||||
* ) strip --strip-unneeded $i
|
||||
;;
|
||||
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
|
||||
*$(basename $i)* ) ;;
|
||||
* ) strip --strip-unneeded $i ;;
|
||||
*$(basename $i)* )
|
||||
;;
|
||||
* ) strip --strip-unneeded $i
|
||||
;;
|
||||
esac
|
||||
done</userinput><userinput>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user