diff options
author | marino <marino@FreeBSD.org> | 2015-01-22 02:39:11 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2015-01-22 02:39:11 +0800 |
commit | 21f5d6e7d554d23dbaef47c6a96e148636b337f9 (patch) | |
tree | f3ec634c2984aa77cb8505e901c7eb83a1831349 | |
parent | 162787b947303f02de463a00e532cd5c804555d9 (diff) | |
download | freebsd-ports-gnome-21f5d6e7d554d23dbaef47c6a96e148636b337f9.tar.gz freebsd-ports-gnome-21f5d6e7d554d23dbaef47c6a96e148636b337f9.tar.zst freebsd-ports-gnome-21f5d6e7d554d23dbaef47c6a96e148636b337f9.zip |
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).
-rw-r--r-- | biology/ariadne/Makefile | 2 | ||||
-rw-r--r-- | misc/otter/Makefile | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/biology/ariadne/Makefile b/biology/ariadne/Makefile index 87a5271a1c87..6009aab161d3 100644 --- a/biology/ariadne/Makefile +++ b/biology/ariadne/Makefile @@ -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 +=| ; \ diff --git a/misc/otter/Makefile b/misc/otter/Makefile index 02b2e9a7077b..a86e432769f5 100644 --- a/misc/otter/Makefile +++ b/misc/otter/Makefile @@ -17,6 +17,8 @@ PORTDOCS= README anldp.pdf mace2.pdf otter33.pdf OPTIONS_DEFINE= DOCS EXAMPLES +MAKE_JOBS_UNSAFE= yes + .include <bsd.port.options.mk> post-patch: |