mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
system/clamav: Fixed for bash4.
This commit is contained in:
parent
c610c07b2a
commit
222199aa1a
1 changed files with 2 additions and 6 deletions
|
@ -143,12 +143,8 @@ chmod 660 $PKG/var/log/clamd.log.new
|
|||
chown ${CLAMUSR}:${CLAMGRP} $PKG/var/log/freshclam.log.new
|
||||
chmod 660 $PKG/var/log/freshclam.log.new
|
||||
|
||||
( cd $PKG
|
||||
find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \
|
||||
xargs strip --strip-unneeded 2> /dev/null
|
||||
find . | xargs file | grep "shared object" | 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
|
||||
|
||||
# Compress the man page(s)
|
||||
find $PKG/usr/man -type f -name "*.?" -exec gzip -9f {} \;
|
||||
|
|
Loading…
Reference in a new issue