summaryrefslogtreecommitdiffstats
path: root/system/clamav
diff options
context:
space:
mode:
author David Somero2010-05-19 08:48:12 +0200
committer David Somero2010-05-19 08:48:12 +0200
commit222199aa1aaca7410571ed6d5215402426586598 (patch)
tree7881253e87c91b2d83e0ff04180d5efce7e14d13 /system/clamav
parentc610c07b2a877236126d12d02149de6b0f91347a (diff)
downloadslackbuilds-222199aa1aaca7410571ed6d5215402426586598.tar.gz
system/clamav: Fixed for bash4.
Diffstat (limited to 'system/clamav')
-rw-r--r--system/clamav/clamav.SlackBuild8
1 files changed, 2 insertions, 6 deletions
diff --git a/system/clamav/clamav.SlackBuild b/system/clamav/clamav.SlackBuild
index 2e60518930..78feb840a3 100644
--- a/system/clamav/clamav.SlackBuild
+++ b/system/clamav/clamav.SlackBuild
@@ -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 {} \;