svn commit: r334717 - head/audio/raul

Marcus von Appen mva at FreeBSD.org
Sun Nov 24 11:47:25 UTC 2013


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>


More information about the svn-ports-all mailing list