summaryrefslogtreecommitdiff
path: root/databases/ipa_sdb
diff options
context:
space:
mode:
authorobache <obache>2007-01-22 12:23:39 +0000
committerobache <obache>2007-01-22 12:23:39 +0000
commit773eacaeb0877c4b7c373128f03cd1b8e8d8b43a (patch)
treee68363e9e913b9a5959a4a325a5cffb55ef94346 /databases/ipa_sdb
parenta47e61247dfd1a4d7e10d0e5084cfa4c2886dd20 (diff)
downloadpkgsrc-773eacaeb0877c4b7c373128f03cd1b8e8d8b43a.tar.gz
Fix mismatch of option name, definition v.s. usage.
Pointed out in PR 34860.
Diffstat (limited to 'databases/ipa_sdb')
-rw-r--r--databases/ipa_sdb/options.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/databases/ipa_sdb/options.mk b/databases/ipa_sdb/options.mk
index c7fb4cefea9..fd3ff21f5d2 100644
--- a/databases/ipa_sdb/options.mk
+++ b/databases/ipa_sdb/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.1.1.1 2007/01/03 15:06:02 obache Exp $
+# $NetBSD: options.mk,v 1.2 2007/01/22 12:23:39 obache Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.ipa_sdb
PKG_SUPPORTED_OPTIONS= ipa-without-autorules ipa-without-limits \
@@ -9,27 +9,27 @@ PKG_SUPPORTED_OPTIONS= ipa-without-autorules ipa-without-limits \
###
### Disable dynamic rules support
###
-.if !empty(PKG_OPTIONS:Mwithout_autorules)
+.if !empty(PKG_OPTIONS:Mipa-without-autorules)
CONFIGURE_ARGS+= --disable-autorules
.endif
###
### Disable limits support
###
-.if !empty(PKG_OPTIONS:Mwithout_limits)
+.if !empty(PKG_OPTIONS:Mipa-without-limits)
CONFIGURE_ARGS+= --disable-limits
.endif
###
### Disable static rules support
###
-.if !empty(PKG_OPTIONS:Mwithout_rules)
+.if !empty(PKG_OPTIONS:Mipa-without-rules)
CONFIGURE_ARGS+= --disable-rules
.endif
###
### Disable thresholds support
###
-.if !empty(PKG_OPTIONS:Mwithout_thresholds)
+.if !empty(PKG_OPTIONS:Mipa-without-thresholds)
CONFIGURE_ARGS+= --disable-thresholds
.endif