diff options
author | rillig <rillig@pkgsrc.org> | 2019-11-04 21:12:51 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2019-11-04 21:12:51 +0000 |
commit | 805b440f10356ac31240fdb9960107d1f547f52f (patch) | |
tree | 76544c2b719967417daf101900353fc02066f614 /security/qore-ssh2-module | |
parent | 1c44ec1b14eb5e1fcb019972f90d270ed64d21b1 (diff) | |
download | pkgsrc-805b440f10356ac31240fdb9960107d1f547f52f.tar.gz |
security: align variable assignments
pkglint -Wall -F --only aligned --only indent -r
No manual corrections.
Diffstat (limited to 'security/qore-ssh2-module')
-rw-r--r-- | security/qore-ssh2-module/Makefile | 8 | ||||
-rw-r--r-- | security/qore-ssh2-module/options.mk | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/security/qore-ssh2-module/Makefile b/security/qore-ssh2-module/Makefile index 3cc41c8346b..900acfb5f38 100644 --- a/security/qore-ssh2-module/Makefile +++ b/security/qore-ssh2-module/Makefile @@ -1,9 +1,9 @@ -# $NetBSD: Makefile,v 1.9 2018/06/08 20:02:30 nros Exp $ +# $NetBSD: Makefile,v 1.10 2019/11/04 21:13:01 rillig Exp $ DISTNAME= qore-ssh2-module-1.2 CATEGORIES= security -MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/} -EXTRACT_SUFX= .tar.bz2 +MASTER_SITES= ${MASTER_SITE_GITHUB:=qorelanguage/} +EXTRACT_SUFX= .tar.bz2 GITHUB_RELEASE= v${PKGVERSION_NOREV} GITHUB_PROJECT= module-ssh2 @@ -18,7 +18,7 @@ USE_LANGUAGES= c c++11 USE_TOOLS+= gmake pax PTHREAD_OPTS+= native -CONFIGURE_ARGS+=--with-libsuffix="" +CONFIGURE_ARGS+= --with-libsuffix="" #This is needed in order to comply the with MIT license and binary distribution #Install docs diff --git a/security/qore-ssh2-module/options.mk b/security/qore-ssh2-module/options.mk index c93b98daab8..9b174cc0ad6 100644 --- a/security/qore-ssh2-module/options.mk +++ b/security/qore-ssh2-module/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.1 2014/12/30 16:02:08 wiz Exp $ +# $NetBSD: options.mk,v 1.2 2019/11/04 21:13:01 rillig Exp $ # PKG_OPTIONS_VAR= PKG_OPTIONS.qore-ssh2-module @@ -6,7 +6,7 @@ PKG_SUPPORTED_OPTIONS= debug .include "../../mk/bsd.options.mk" .if !empty(PKG_OPTIONS:Mdebug) -CONFIGURE_ARGS+= --enable-debug +CONFIGURE_ARGS+= --enable-debug .else -CONFIGURE_ARGS+= --disable-debug +CONFIGURE_ARGS+= --disable-debug .endif |