diff options
author | marino <marino@FreeBSD.org> | 2016-03-23 16:56:57 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-03-23 16:56:57 +0800 |
commit | 9fe228458a799412397f37b1b096126073b8ab6f (patch) | |
tree | 6fe484566332239708ef63e5b2fc4cc118f133cf /deskutils | |
parent | e9ee688ce238c0ec019f21f7dddbe67e60ea7086 (diff) | |
download | freebsd-ports-gnome-9fe228458a799412397f37b1b096126073b8ab6f.tar.gz freebsd-ports-gnome-9fe228458a799412397f37b1b096126073b8ab6f.tar.zst freebsd-ports-gnome-9fe228458a799412397f37b1b096126073b8ab6f.zip |
deskutils/wyrd is not jobs safe
Like most (all?) OCaml ports, wyrd is not jobs safe. It tries to use
mt_curses.o before it's fully built. I've seen this fail multiple times,
although fairly infrequently.
Diffstat (limited to 'deskutils')
-rw-r--r-- | deskutils/wyrd/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/deskutils/wyrd/Makefile b/deskutils/wyrd/Makefile index 1870aa21527d..1222466d1057 100644 --- a/deskutils/wyrd/Makefile +++ b/deskutils/wyrd/Makefile @@ -28,6 +28,8 @@ PORTDOCS= manual.html manual.pdf OPTIONS_DEFINE= UTF8 DOCS UTF8_CONFIGURE_ENABLE= utf8 +MAKE_JOBS_UNSAFE= yes + post-patch: @${REINPLACE_CMD} 's|gcc|${CC}|' ${WRKSRC}/curses/curses.ml |