svn commit: r377623 - in head: biology/ariadne misc/otter

John Marino marino at FreeBSD.org
Wed Jan 21 18:39:13 UTC 2015


Author: marino
Date: Wed Jan 21 18:39:11 2015
New Revision: 377623
URL: https://svnweb.freebsd.org/changeset/ports/377623
QAT: https://qat.redports.org/buildarchive/r377623/

Log:
  misc/otter & biology/ariadne: Not jobs safe
  
  The otter port tries to build libotter.a before an object is completely
  built (share.o in my case) and ariadne tries to start building in a
  directory before it is created (under multiple jobs).

Modified:
  head/biology/ariadne/Makefile
  head/misc/otter/Makefile

Modified: head/biology/ariadne/Makefile
==============================================================================
--- head/biology/ariadne/Makefile	Wed Jan 21 18:34:16 2015	(r377622)
+++ head/biology/ariadne/Makefile	Wed Jan 21 18:39:11 2015	(r377623)
@@ -18,6 +18,8 @@ MAKE_ARGS+=	CC="${CC}"
 
 OPTIONS_DEFINE=	DOCS
 
+MAKE_JOBS_UNSAFE=	yes
+
 post-patch:
 	@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}| ; \
 		s|CFLAGS =|CFLAGS +=| ; \

Modified: head/misc/otter/Makefile
==============================================================================
--- head/misc/otter/Makefile	Wed Jan 21 18:34:16 2015	(r377622)
+++ head/misc/otter/Makefile	Wed Jan 21 18:39:11 2015	(r377623)
@@ -17,6 +17,8 @@ PORTDOCS=	README anldp.pdf mace2.pdf ott
 
 OPTIONS_DEFINE=	DOCS EXAMPLES
 
+MAKE_JOBS_UNSAFE=	yes
+
 .include <bsd.port.options.mk>
 
 post-patch:


More information about the svn-ports-head mailing list