diff options
author | rillig <rillig@pkgsrc.org> | 2018-01-01 18:16:35 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2018-01-01 18:16:35 +0000 |
commit | b18c532e6ecd247c16c309db2b6ebfb2d9d9b929 (patch) | |
tree | 7a8380c1b05f2a6cfadde7f15fc8cafd97355633 /security/openpam | |
parent | 102f0b322dc649972205d0be0d0fc29afdf59f22 (diff) | |
download | pkgsrc-b18c532e6ecd247c16c309db2b6ebfb2d9d9b929.tar.gz |
Replaced $(ROUND) with ${CURLY} variable references.
This has been a pkglint warning for several years now, and pkglint can even
fix it automatically. And it did for this commit.
Only in lang/mercury, two passes of autofixing were necessary because there
were nested variables.
Diffstat (limited to 'security/openpam')
-rw-r--r-- | security/openpam/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/security/openpam/Makefile b/security/openpam/Makefile index d3766f83213..5864da37b2d 100644 --- a/security/openpam/Makefile +++ b/security/openpam/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2017/09/03 08:53:14 wiz Exp $ +# $NetBSD: Makefile,v 1.26 2018/01/01 18:16:39 rillig Exp $ DISTNAME= openpam-20140912 PKGREVISION= 2 @@ -19,7 +19,7 @@ CONFIGURE_ARGS+= --without-pam-su CONFIGURE_ARGS+= --with-pam-unix CONFIGURE_ARGS+= --with-modules-dir=${PREFIX}/lib/security -CPPFLAGS+= -DSYSCONFDIR=\"$(PKG_SYSCONFDIR)\" +CPPFLAGS+= -DSYSCONFDIR=\"${PKG_SYSCONFDIR}\" OWN_DIRS= ${PKG_SYSCONFDIR}/pam.d |