Date: Sun, 24 Nov 2013 11:47:24 +0000 (UTC) From: Marcus von Appen <mva@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r334717 - head/audio/raul Message-ID: <201311241147.rAOBlOba057310@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mva Date: Sun Nov 24 11:47:24 2013 New Revision: 334717 URL: http://svnweb.freebsd.org/changeset/ports/334717 Log: - Fix the usage of 'python' to get rid of the implicit lang/python dependency Modified: head/audio/raul/Makefile Modified: head/audio/raul/Makefile ============================================================================== --- head/audio/raul/Makefile Sun Nov 24 11:23:42 2013 (r334716) +++ head/audio/raul/Makefile Sun Nov 24 11:47:24 2013 (r334717) @@ -39,12 +39,12 @@ post-patch: ${WRKSRC}/autowaf/autowaf.py do-configure: - @(cd ${WRKSRC} && ./waf ${WAF_VERBOSE} --prefix=${PREFIX} configure) + @(cd ${WRKSRC} && ${PYTHON_CMD} waf ${WAF_VERBOSE} --prefix=${PREFIX} configure) do-build: - @(cd ${WRKSRC} && ./waf ${WAF_VERBOSE} ${WAF_JOBS} build) + @(cd ${WRKSRC} && ${PYTHON_CMD} waf ${WAF_VERBOSE} ${WAF_JOBS} build) do-install: - @(cd ${WRKSRC} && ./waf ${WAF_VERBOSE} install) + @(cd ${WRKSRC} && ${PYTHON_CMD} waf ${WAF_VERBOSE} install) .include <bsd.port.post.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201311241147.rAOBlOba057310>