diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-09-30 12:44:27 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-09-30 12:44:27 +0000 |
commit | 67b0d714659007ad0a4e1cdd08403b8c9955a716 (patch) | |
tree | 1e3816c6b0431d5bf2b413ecba00304335db56d2 /dns/bind9-devel | |
parent | 3e4ce85bdc890c43c01fb887d59ec44c3d4a1cf2 (diff) | |
download | freebsd-ports-67b0d714659007ad0a4e1cdd08403b8c9955a716.zip |
So, on 9, it is failing to build it with jobs.
It builds .a before all the .o that are supposed to go in the .a are
built. Imagine what happens after that...
Reported by: Craig Leres
Sponsored by: Absolight
Diffstat (limited to 'dns/bind9-devel')
-rw-r--r-- | dns/bind9-devel/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dns/bind9-devel/Makefile b/dns/bind9-devel/Makefile index b6306abb7c51..24be501569a7 100644 --- a/dns/bind9-devel/Makefile +++ b/dns/bind9-devel/Makefile @@ -238,6 +238,10 @@ PORTDOCS= * .include <bsd.port.pre.mk> +.if ${OSVERSION} <= 1000000 +MAKE_JOBS_UNSAFE= yes +.endif + .if ( ${PORT_OPTIONS:MGOST} || ${PORT_OPTIONS:MGOST_ASN1} ) && ${SSL_DEFAULT} == base BROKEN= OpenSSL from the base system does not support GOST, add \ DEFAULT_VERSIONS+=ssl=openssl to your /etc/make.conf and rebuild everything \ |