summaryrefslogtreecommitdiff
path: root/net/entropy
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2005-12-05 20:49:47 +0000
committerrillig <rillig@pkgsrc.org>2005-12-05 20:49:47 +0000
commitb71a1d488b6b45e0a968a4c149990c25b6a09215 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /net/entropy
parent624eed58928f83676fbd7ca01a5f6974bb2cce2a (diff)
downloadpkgsrc-b71a1d488b6b45e0a968a4c149990c25b6a09215.tar.gz
Fixed pkglint warnings. The warnings are mostly quoting issues, for
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
Diffstat (limited to 'net/entropy')
-rw-r--r--net/entropy/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/entropy/Makefile b/net/entropy/Makefile
index ade59409748..cfcfa35339b 100644
--- a/net/entropy/Makefile
+++ b/net/entropy/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.19 2005/11/08 15:59:38 tv Exp $
+# $NetBSD: Makefile,v 1.20 2005/12/05 20:50:45 rillig Exp $
#
DISTNAME= entropy_rsa-${ENTROPY_VERSION}
@@ -50,11 +50,11 @@ CONFIGURE_ARGS+= --with-tree
CONFIGURE_ARGS+= --with-mysql=${LOCALBASE}
.include "../../mk/mysql.buildlink3.mk"
.elif ${ENTROPY_STORE_TYPE} != "monolithic"
-.error unknown ENTROPY_STORE_TYPE: ${ENTROPY_STORE_TYPE}
+PKG_FAIL_REASON+= "unknown ENTROPY_STORE_TYPE: "${ENTROPY_STORE_TYPE:Q}""
.endif
# maximum allowed peer connections (and child processes); default 64
-.ifdef ENTROPY_MAX_PEERS
+.if defined(ENTROPY_MAX_PEERS)
CONFIGURE_ARGS+= --enable-max-peers=${ENTROPY_MAX_PEERS}
.endif