diff options
author | obache <obache@pkgsrc.org> | 2007-01-22 12:23:39 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2007-01-22 12:23:39 +0000 |
commit | c25a64ced5cd38764f59c103b0e2aebe7bc4043d (patch) | |
tree | e68363e9e913b9a5959a4a325a5cffb55ef94346 /databases/ipa_sdb | |
parent | 30648fc3641451a676183df90231d9ce76299c2a (diff) | |
download | pkgsrc-c25a64ced5cd38764f59c103b0e2aebe7bc4043d.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.mk | 10 |
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 |