summaryrefslogtreecommitdiff
path: root/security/honeyd/options.mk
diff options
context:
space:
mode:
authorrillig <rillig>2005-12-05 20:49:47 +0000
committerrillig <rillig>2005-12-05 20:49:47 +0000
commitb4f920543059af038598712771c3211999ef42a6 (patch)
treedac5b1dd14794d86b061d26b9503adb2552ed3f8 /security/honeyd/options.mk
parent5bf026ec112f405b514a2d69a72e10fa92c4c524 (diff)
downloadpkgsrc-b4f920543059af038598712771c3211999ef42a6.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 'security/honeyd/options.mk')
-rw-r--r--security/honeyd/options.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/security/honeyd/options.mk b/security/honeyd/options.mk
index 39b1e4fe920..9b9cc83397b 100644
--- a/security/honeyd/options.mk
+++ b/security/honeyd/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.2 2005/04/20 14:34:31 wiz Exp $
+# $NetBSD: options.mk,v 1.3 2005/12/05 20:50:56 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.honeyd
PKG_SUPPORTED_OPTIONS= python rrdtool
@@ -10,7 +10,7 @@ PKG_SUPPORTED_OPTIONS= python rrdtool
###
.if !empty(PKG_OPTIONS:Mpython)
. include "../../lang/python/extension.mk"
-CONFIGURE_ENV+= _PATH_PYTHON=${PYTHONBIN}
+CONFIGURE_ENV+= _PATH_PYTHON=${PYTHONBIN:Q}
.else
CONFIGURE_ARGS+= --without-python
.endif