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 /emulators/dynagen | |
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 'emulators/dynagen')
-rw-r--r-- | emulators/dynagen/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emulators/dynagen/Makefile b/emulators/dynagen/Makefile index 0147015d6ea..b7b9d159f8d 100644 --- a/emulators/dynagen/Makefile +++ b/emulators/dynagen/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 2019/04/25 07:32:52 maya Exp $ +# $NetBSD: Makefile,v 1.10 2019/05/23 19:23:00 rillig Exp $ DISTNAME= dynagen-0.11.0 PKGREVISION= 5 @@ -21,7 +21,7 @@ SUBST_CLASSES+= paths SUBST_STAGE.paths= pre-configure SUBST_FILES.paths= dynagen SUBST_SED.paths= -e "s|@SYSCONFDIR@|${PKG_SYSCONFDIR}|" -SUBST_SED.paths+= -e "s|@PREFIX@|${PREFIX}|" +SUBST_VARS.paths= PREFIX CONF_FILES+= share/examples/dynagen/dynagen.ini ${PKG_SYSCONFDIR}/dynagen.ini |