svn commit: r398277 - head/games/blackshadeselite

John Marino marino at FreeBSD.org
Thu Oct 1 14:24:44 UTC 2015


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
 


More information about the svn-ports-all mailing list