diff options
author | mva <mva@FreeBSD.org> | 2013-12-16 05:33:13 +0800 |
---|---|---|
committer | mva <mva@FreeBSD.org> | 2013-12-16 05:33:13 +0800 |
commit | 163e2c684c2aa2116bd99527c0d013dba148eb9e (patch) | |
tree | cc9a939148ed86b8e100dd3e8f5af8dd83da1e02 | |
parent | 649786e4b9810d3cb112d4496227716b1ab49129 (diff) | |
download | freebsd-ports-gnome-163e2c684c2aa2116bd99527c0d013dba148eb9e.tar.gz freebsd-ports-gnome-163e2c684c2aa2116bd99527c0d013dba148eb9e.tar.zst freebsd-ports-gnome-163e2c684c2aa2116bd99527c0d013dba148eb9e.zip |
- Fix the usage of 'python' to get rid of the implicit lang/python
dependency
Reported by: exp-run (PR 184591)
Approved by: portmgr (blanket)
-rw-r--r-- | math/biggles/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/math/biggles/Makefile b/math/biggles/Makefile index ac09f8060b5e..797f9e16a788 100644 --- a/math/biggles/Makefile +++ b/math/biggles/Makefile @@ -27,6 +27,7 @@ MAKE_ARGS= CC="${CC}" \ NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e '/CC/s,gcc,$$\{CC\},' ${WRKSRC}/make.inc + @${REINPLACE_CMD} -e 's|= python|= ${PYTHON_CMD}|' ${WRKSRC}/make.inc pre-build: @${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC} |