diff options
author | rillig <rillig@pkgsrc.org> | 2019-05-23 19:22:54 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2019-05-23 19:22:54 +0000 |
commit | cabadf3d995dfdb93e43fa33e676fdfbb6f7d1f5 (patch) | |
tree | dfd45506cac9c8adb60a55d809ab0dbc4d5a750e /security/logcheck | |
parent | afe0216c35d9e0e0b96fe80eb38badf368ef84a7 (diff) | |
download | pkgsrc-cabadf3d995dfdb93e43fa33e676fdfbb6f7d1f5.tar.gz |
all: replace SUBST_SED with the simpler SUBST_VARS
pkglint -Wall -r --only "substitution command" -F
With manual review and indentation fixes since pkglint doesn't get that
part correct in every case.
Diffstat (limited to 'security/logcheck')
-rw-r--r-- | security/logcheck/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/logcheck/Makefile b/security/logcheck/Makefile index d4651753db9..341a5eb13b7 100644 --- a/security/logcheck/Makefile +++ b/security/logcheck/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2017/08/16 20:21:14 wiz Exp $ +# $NetBSD: Makefile,v 1.22 2019/05/23 19:23:15 rillig Exp $ DISTNAME= logcheck-1.1.1 PKGREVISION= 1 @@ -24,8 +24,8 @@ SUBST_STAGE.prefix= pre-configure SUBST_MESSAGE.prefix= Fixing hard-coded paths. SUBST_FILES.prefix= Makefile systems/freebsd/logcheck.sh SUBST_SED.prefix= -e "s+/usr/local+${PREFIX}+g" -SUBST_SED.prefix+= -e "s+@PKG_SYSCONFDIR@+${PKG_SYSCONFDIR}+g" -SUBST_SED.prefix+= -e "s+@TEMPDIR@+${TEMPDIR}+g" +SUBST_VARS.prefix= PKG_SYSCONFDIR +SUBST_VARS.prefix+= TEMPDIR INSTALLATION_DIRS+= bin ${EGDIR} |