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 /lang/php73 | |
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 'lang/php73')
-rw-r--r-- | lang/php73/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/php73/Makefile b/lang/php73/Makefile index 499791e0e5f..41d2e9013ea 100644 --- a/lang/php73/Makefile +++ b/lang/php73/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2019/03/12 04:15:03 taca Exp $ +# $NetBSD: Makefile,v 1.4 2019/05/23 19:23:03 rillig Exp $ # # We can't omit PKGNAME here to handle PKG_OPTIONS. @@ -35,8 +35,8 @@ SUBST_STAGE.path= pre-configure SUBST_FILES.path= ext/phar/phar/phar.php SUBST_FILES.path+= php.ini-development php.ini-production run-tests.php SUBST_FILES.path+= sapi/cgi/Makefile.frag -SUBST_SED.path= -e 's,@CGIDIR@,${CGIDIR},g' -SUBST_SED.path+= -e 's,@PREFIX@,${PREFIX},g' +SUBST_VARS.path= CGIDIR +SUBST_VARS.path+= PREFIX INSTALLATION_DIRS+= ${CGIDIR} ${PHP_EXTENSION_DIR} ${EGDIR} share/php |