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 /mail/newspipe | |
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 'mail/newspipe')
-rw-r--r-- | mail/newspipe/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/newspipe/Makefile b/mail/newspipe/Makefile index b0af4b9e26f..f81dc399a47 100644 --- a/mail/newspipe/Makefile +++ b/mail/newspipe/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2019/04/25 07:33:04 maya Exp $ +# $NetBSD: Makefile,v 1.15 2019/05/23 19:23:06 rillig Exp $ # DISTNAME= newspipe.1.1.9 @@ -24,9 +24,9 @@ REPLACE_PYTHON= *.py SUBST_CLASSES+= bin SUBST_STAGE.bin= do-configure SUBST_FILES.bin= newspipe.py newspipe -SUBST_SED.bin= -e 's|@LOCALBASE@|${LOCALBASE}|g' -SUBST_SED.bin+= -e 's|@PREFIX@|${PREFIX}|g' -SUBST_SED.bin+= -e 's|@PYTHONBIN@|${PYTHONBIN}|g' +SUBST_VARS.bin= LOCALBASE +SUBST_VARS.bin+= PREFIX +SUBST_VARS.bin+= PYTHONBIN INSTALLATION_DIRS= bin share/newspipe share/doc/newspipe INSTALLATION_DIRS+= share/examples/newspipe |