Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 5 Jun 2017 23:02:26 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r442692 - head/graphics/partio
Message-ID:  <201706052302.v55N2QSS053431@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706052302.v55N2QSS053431>