diff options
author | Yen-Ming Lee <leeym@FreeBSD.org> | 2003-06-08 16:16:49 +0000 |
---|---|---|
committer | Yen-Ming Lee <leeym@FreeBSD.org> | 2003-06-08 16:16:49 +0000 |
commit | 07db5231ffcfb169aed5716c4ea8b71d5a36c3f3 (patch) | |
tree | 08d71d88447574ec5625e4cec83d890252a19641 /security/clamav-devel/pkg-install | |
parent | 18aaf250ba9fa1cf39f455aee89fe69c37b0a668 (diff) |
Enable pthread support using devel/pth.
Turn on building clamd and clamdscan.
PR: 53056
Pointed out by: Olivier Tharan <olive@oban.frmug.org>
Submitted by: TERAMOTO Masahiro <markun@onohara.to>
Notes
Notes:
svn path=/head/; revision=82541
Diffstat (limited to 'security/clamav-devel/pkg-install')
-rw-r--r-- | security/clamav-devel/pkg-install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/clamav-devel/pkg-install b/security/clamav-devel/pkg-install index 448ffdc1f34a..4e257bc4ccf7 100644 --- a/security/clamav-devel/pkg-install +++ b/security/clamav-devel/pkg-install @@ -4,8 +4,8 @@ if [ "$2" != "PRE-INSTALL" ]; then exit 0 fi -USER=clamav -GROUP=clamav +USER?=clamav +GROUP?=clamav if ! pw groupshow "$GROUP" 2>/dev/null 1>&2; then if pw groupadd $GROUP; then |