1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-11 07:22:22 +00:00

- Fix the usage of 'python' to get rid of the implicit lang/python

dependency

Reported by:	exp-run (PR 184591)
Approved by:	portmgr (blanket)
This commit is contained in:
Marcus von Appen 2013-12-14 14:57:24 +00:00
parent 50cfc58f27
commit 463c5275f4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=336452

View File

@ -47,15 +47,15 @@ post-patch:
do-configure:
@cd ${WRKSRC}; \
${SETENV} ${CONFIGURE_ENV} ./waf configure --prefix=${PREFIX}
${SETENV} ${CONFIGURE_ENV} ${PYTHON_CMD} waf configure --prefix=${PREFIX}
do-build:
@cd ${WRKSRC}; \
${SETENV} ${MAKE_ENV} ./waf build ${_MAKE_JOBS}
${SETENV} ${MAKE_ENV} ${PYTHON_CMD} waf build ${_MAKE_JOBS}
do-install:
@cd ${WRKSRC}; \
${SETENV} ${MAKE_ENV} ./waf install
${SETENV} ${MAKE_ENV} ${PYTHON_CMD} waf install
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>