svn commit: r442692 - head/graphics/partio
Raphael Kubo da Costa
rakuco at FreeBSD.org
Mon Jun 5 23:02:27 UTC 2017
Author: rakuco
Date: Mon Jun 5 23:02:26 2017
New Revision: 442692
URL: https://svnweb.freebsd.org/changeset/ports/442692
Log:
Use MAKE_CMD instead of hardcoding 'make' in post-build.
This allows people to build the port with ninja instead of make.
Modified:
head/graphics/partio/Makefile
Modified: head/graphics/partio/Makefile
==============================================================================
--- head/graphics/partio/Makefile Mon Jun 5 21:28:39 2017 (r442691)
+++ head/graphics/partio/Makefile Mon Jun 5 23:02:26 2017 (r442692)
@@ -46,7 +46,7 @@ post-patch:
.if ${PORT_OPTIONS:MDOCS}
post-build:
- @(cd ${BUILD_WRKSRC}; make doc)
+ @(cd ${BUILD_WRKSRC}; ${MAKE_CMD} doc)
.endif
.include <bsd.port.mk>
More information about the svn-ports-all
mailing list