summaryrefslogtreecommitdiffstats
path: root/clamav
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2006-10-18 10:10:38 +0000
committer Eric Hameleers <alien@slackware.com>2006-10-18 10:10:38 +0000
commit602c87f36cf6e9787e20c2fb3d20d4e575c5217c (patch)
tree0b9a2f34f243d902f3abf5d1861150d92c567535 /clamav
parent088b8d6c3c3d3d0a7ba94281a7a9650902260134 (diff)
downloadasb-602c87f36cf6e9787e20c2fb3d20d4e575c5217c.tar.gz
asb-602c87f36cf6e9787e20c2fb3d20d4e575c5217c.tar.xz
Fix an error caught due to stricter checking
Diffstat (limited to 'clamav')
-rwxr-xr-xclamav/build/clamav.SlackBuild4
1 files changed, 2 insertions, 2 deletions
diff --git a/clamav/build/clamav.SlackBuild b/clamav/build/clamav.SlackBuild
index 64aa7048..55a8a877 100755
--- a/clamav/build/clamav.SlackBuild
+++ b/clamav/build/clamav.SlackBuild
@@ -200,10 +200,10 @@ echo Building ...
# We need the "clamav" user and group to exist at the time of
# configuring the software...
# Add the 'clamav' group if it doesn't already exist:
-/usr/sbin/groupadd ${CLAMGRP} 2> /dev/null
+/usr/sbin/groupadd ${CLAMGRP} 2> /dev/null || true
# Add the 'clamav' user if it doesn't exist already:
/usr/sbin/useradd -c "ClamAV user" -g ${CLAMGRP} \
- -s "/bin/false" ${CLAMUSR} 2> /dev/null
+ -s "/bin/false" ${CLAMUSR} 2> /dev/null || true
LDFLAGS="$SLKLDFLAGS" \
CFLAGS="$SLKCFLAGS" \