svn commit: r324710 - head/graphics/volpack

Alexey Dokuchaev danfe at FreeBSD.org
Wed Aug 14 12:38:41 UTC 2013


Author: danfe
Date: Wed Aug 14 12:38:41 2013
New Revision: 324710
URL: http://svnweb.freebsd.org/changeset/ports/324710

Log:
  Unbreak parallel builds (-jX) on recent -CURRENT, where our make(1) is
  bmake(1) now.  The build fails because bmake(1) treats MFLAGS variable
  slightly differently: while by default its value would be '-j X', our
  old make(1) allows to set it from the makefile or environment, bmake(1)
  will append to it instead.  Pass the empty value via MAKE_ARGS to make
  every make(1) happy, and thus fix parallel builds (once again).

Modified:
  head/graphics/volpack/Makefile

Modified: head/graphics/volpack/Makefile
==============================================================================
--- head/graphics/volpack/Makefile	Wed Aug 14 12:32:17 2013	(r324709)
+++ head/graphics/volpack/Makefile	Wed Aug 14 12:38:41 2013	(r324710)
@@ -13,8 +13,7 @@ COMMENT=	Portable software library for v
 LICENSE=	BSD
 
 GNU_CONFIGURE=	yes
-
-MAKE_JOBS_UNSAFE=yes
+MAKE_ARGS=	MFLAGS=""	# required for bmake(1) and -jX builds
 
 PLIST_FILES=	lib/libvolpack.a \
 		include/volpack.h


More information about the svn-ports-head mailing list