diff options
author | jperkin <jperkin@pkgsrc.org> | 2018-07-04 13:40:07 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2018-07-04 13:40:07 +0000 |
commit | 3cc59ce5299d6358f3c1487cc9da3d48ef0a0647 (patch) | |
tree | 4b7c9cc25a344fafc9d2f536ba6e474a9bb281e6 /graphics/asymptote | |
parent | 063580a062ba10ffba035c8d96b541b5ce7a426d (diff) | |
download | pkgsrc-3cc59ce5299d6358f3c1487cc9da3d48ef0a0647.tar.gz |
*: Move SUBST_STAGE from post-patch to pre-configure
Performing substitutions during post-patch breaks tools such as mkpatches,
making it very difficult to regenerate correct patches after making changes,
and often leading to substituted string replacements being committed.
Diffstat (limited to 'graphics/asymptote')
-rw-r--r-- | graphics/asymptote/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/asymptote/Makefile b/graphics/asymptote/Makefile index de5ba9bb296..8fcf194e503 100644 --- a/graphics/asymptote/Makefile +++ b/graphics/asymptote/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2017/06/08 08:47:26 wiz Exp $ +# $NetBSD: Makefile,v 1.26 2018/07/04 13:40:20 jperkin Exp $ DISTNAME= asymptote-2.41 CATEGORIES= graphics @@ -38,7 +38,7 @@ CFLAGS+= -DGC_NO_THREAD_REDIRECTS REPLACE_PYTHON+= GUI/*.py SUBST_CLASSES+= python -SUBST_STAGE.python= post-patch +SUBST_STAGE.python= pre-configure SUBST_FILES.python= Makefile.in SUBST_MESSAGE.python= Fixing path to python interpreter. SUBST_SED.python+= -e "s|/usr/bin/env python|${PYTHONBIN:Q}|g" |