diff options
author | marcus <marcus@FreeBSD.org> | 2013-07-22 22:47:28 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2013-07-22 22:47:28 +0800 |
commit | b49aaac4b77818609c74709449bf13cbb07c472e (patch) | |
tree | 9cdb6b910ad92dab7d81949ad961e6691250005f /net | |
parent | 04cc460069ab82e5d743dc869200c25f61033c19 (diff) | |
download | freebsd-ports-gnome-b49aaac4b77818609c74709449bf13cbb07c472e.tar.gz freebsd-ports-gnome-b49aaac4b77818609c74709449bf13cbb07c472e.tar.zst freebsd-ports-gnome-b49aaac4b77818609c74709449bf13cbb07c472e.zip |
Mark MAKE_JOBS_UNSAFE on amd64.
Reported by: ohauer
Diffstat (limited to 'net')
-rw-r--r-- | net/tac_plus4/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/tac_plus4/Makefile b/net/tac_plus4/Makefile index efdf9b9f09c6..c0c4bdf3c7ae 100644 --- a/net/tac_plus4/Makefile +++ b/net/tac_plus4/Makefile @@ -23,6 +23,12 @@ MAN8= tac_plus.8 tac_pwd.8 CONFLICTS= ru-tac+ia-[0-9]* tac_plus-libradius-[0-9]* +.include <bsd.port.pre.mk> + +.if ${ARCH} == "amd64" +MAKE_JOBS_UNSAFE= yes +.endif + # check expiration dates against 'expire' field of master.passwd file .if defined(TAC_EXPIRE_MASTER_PASSWD) EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-bb @@ -54,4 +60,4 @@ post-install: ${INSTALL_SCRIPT} ${WRKSRC}/tac_convert ${PREFIX}/share/doc/tac_plus .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |