Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Oct 2015 14:24:43 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r398277 - head/games/blackshadeselite
Message-ID:  <201510011424.t91EOhcv022342@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Thu Oct  1 14:24:43 2015
New Revision: 398277
URL: https://svnweb.freebsd.org/changeset/ports/398277

Log:
  games/blackshadeselite is not jobs safe.
  
  This one has failed on me multiple times under high contention.
  It appears that its is trying to create objects files in the objs
  directory before that directory is created (a race between c++
  and mkdir)

Modified:
  head/games/blackshadeselite/Makefile

Modified: head/games/blackshadeselite/Makefile
==============================================================================
--- head/games/blackshadeselite/Makefile	Thu Oct  1 14:08:47 2015	(r398276)
+++ head/games/blackshadeselite/Makefile	Thu Oct  1 14:24:43 2015	(r398277)
@@ -30,6 +30,8 @@ PORTDATA=	*
 
 OPTIONS_DEFINE=	DOCS
 
+MAKE_JOBS_UNSAFE=	yes
+
 post-extract:
 	@${FIND} ${WRKSRC}/Data -name '._*' -delete
 



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