Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Aug 2013 12:38:41 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r324710 - head/graphics/volpack
Message-ID:  <201308141238.r7ECcfYx043395@svn.freebsd.org>

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



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