mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
games/sl: Fixed for bash4.
This commit is contained in:
parent
9b07f39589
commit
fc437969bb
2 changed files with 4 additions and 5 deletions
|
@ -75,9 +75,8 @@ mkdir -p $PKG/usr/man # man pages
|
|||
)
|
||||
# End of manual installation
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
|
||||
)
|
||||
find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \
|
||||
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
|
||||
|
||||
( cd $PKG/usr/man
|
||||
find . -type f -exec gzip -9 {} \;
|
||||
|
|
Loading…
Reference in a new issue