diff options
author | John Marino <marino@FreeBSD.org> | 2015-11-13 20:24:51 +0800 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2015-11-13 20:24:51 +0800 |
commit | 58d5e8ac9055112aa20208a592349e6c00cdd596 (patch) | |
tree | e10ebdee3e3262b6ccd06007db43ce3babebc159 /textproc | |
parent | eac69bd2484ec35134679843aece5795b544e433 (diff) | |
download | freebsd-ports-gnome-58d5e8ac9055112aa20208a592349e6c00cdd596.tar.gz freebsd-ports-gnome-58d5e8ac9055112aa20208a592349e6c00cdd596.tar.zst freebsd-ports-gnome-58d5e8ac9055112aa20208a592349e6c00cdd596.zip |
textproc/heirloom-doctools is not jobs safe.
This has failed on me at least twice. The last time involved a
parser error (YYSTYPE was unknown) so there might be a race involving
flex.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/heirloom-doctools/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/textproc/heirloom-doctools/Makefile b/textproc/heirloom-doctools/Makefile index 9b542b875676..f8f18dfe1423 100644 --- a/textproc/heirloom-doctools/Makefile +++ b/textproc/heirloom-doctools/Makefile @@ -45,6 +45,8 @@ MANDIR?= ${PREFIX}/man PORTDOCS= * +MAKE_JOBS_UNSAFE= yes + post-install: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} CHANGES README ${STAGEDIR}${DOCSDIR} |