summaryrefslogtreecommitdiff
path: root/databases/ipa_sdb
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2019-11-02 15:37:59 +0000
committerrillig <rillig@pkgsrc.org>2019-11-02 15:37:59 +0000
commit83afcf6321f293f292e4213f00426d6d4c410f16 (patch)
tree127f4bd9b079761da1920a3b891f2702cece7229 /databases/ipa_sdb
parente60a51b78bae2407e2dbc73016f6bd4274676b81 (diff)
downloadpkgsrc-83afcf6321f293f292e4213f00426d6d4c410f16.tar.gz
databases: align variable assignments
pkglint -Wall -F --only aligned -r No manual corrections.
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 fd3ff21f5d2..87a9896d1f1 100644
--- a/databases/ipa_sdb/options.mk
+++ b/databases/ipa_sdb/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.2 2007/01/22 12:23:39 obache Exp $
+# $NetBSD: options.mk,v 1.3 2019/11/02 15:38:01 rillig Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.ipa_sdb
PKG_SUPPORTED_OPTIONS= ipa-without-autorules ipa-without-limits \
@@ -10,26 +10,26 @@ PKG_SUPPORTED_OPTIONS= ipa-without-autorules ipa-without-limits \
### Disable dynamic rules support
###
.if !empty(PKG_OPTIONS:Mipa-without-autorules)
-CONFIGURE_ARGS+= --disable-autorules
+CONFIGURE_ARGS+= --disable-autorules
.endif
###
### Disable limits support
###
.if !empty(PKG_OPTIONS:Mipa-without-limits)
-CONFIGURE_ARGS+= --disable-limits
+CONFIGURE_ARGS+= --disable-limits
.endif
###
### Disable static rules support
###
.if !empty(PKG_OPTIONS:Mipa-without-rules)
-CONFIGURE_ARGS+= --disable-rules
+CONFIGURE_ARGS+= --disable-rules
.endif
###
### Disable thresholds support
###
.if !empty(PKG_OPTIONS:Mipa-without-thresholds)
-CONFIGURE_ARGS+= --disable-thresholds
+CONFIGURE_ARGS+= --disable-thresholds
.endif