Date: Fri, 30 Sep 2016 12:44:28 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r422981 - in head/dns: bind9-devel bind910 bind911 bind99 Message-ID: <201609301244.u8UCiSSh043206@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Fri Sep 30 12:44:27 2016 New Revision: 422981 URL: https://svnweb.freebsd.org/changeset/ports/422981 Log: 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 Modified: head/dns/bind9-devel/Makefile (contents, props changed) head/dns/bind910/Makefile (contents, props changed) head/dns/bind911/Makefile (contents, props changed) head/dns/bind99/Makefile (contents, props changed) Modified: head/dns/bind9-devel/Makefile ============================================================================== --- head/dns/bind9-devel/Makefile Fri Sep 30 11:40:44 2016 (r422980) +++ head/dns/bind9-devel/Makefile Fri Sep 30 12:44:27 2016 (r422981) @@ -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 \ Modified: head/dns/bind910/Makefile ============================================================================== --- head/dns/bind910/Makefile Fri Sep 30 11:40:44 2016 (r422980) +++ head/dns/bind910/Makefile Fri Sep 30 12:44:27 2016 (r422981) @@ -225,6 +225,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 \ Modified: head/dns/bind911/Makefile ============================================================================== --- head/dns/bind911/Makefile Fri Sep 30 11:40:44 2016 (r422980) +++ head/dns/bind911/Makefile Fri Sep 30 12:44:27 2016 (r422981) @@ -236,6 +236,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 \ Modified: head/dns/bind99/Makefile ============================================================================== --- head/dns/bind99/Makefile Fri Sep 30 11:40:44 2016 (r422980) +++ head/dns/bind99/Makefile Fri Sep 30 12:44:27 2016 (r422981) @@ -190,6 +190,10 @@ PORTDOCS= * .include <bsd.port.pre.mk> +.if ${OSVERSION} <= 1000000 +MAKE_JOBS_UNSAFE= yes +.endif + .if ( ${PORT_OPTIONS:MGOST} ) && ${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 \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201609301244.u8UCiSSh043206>