diff options
author | Sean Bruno <sbruno@FreeBSD.org> | 2016-05-06 18:24:15 +0000 |
---|---|---|
committer | Sean Bruno <sbruno@FreeBSD.org> | 2016-05-06 18:24:15 +0000 |
commit | fc6453053fd319c3246109dc4db226ceed261425 (patch) | |
tree | 7ebc5d3e5cd7987e59c684502efa202a7856c453 | |
parent | 42dc37945a61bc63a1f1a3346c4f7fdf4a8e1d9f (diff) | |
download | ports-fc6453053fd319c3246109dc4db226ceed261425.tar.gz ports-fc6453053fd319c3246109dc4db226ceed261425.zip |
Notes
-rw-r--r-- | net/intel-ixl-kmod/Makefile | 4 | ||||
-rw-r--r-- | sysutils/intel-nvmupdate/Makefile | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/net/intel-ixl-kmod/Makefile b/net/intel-ixl-kmod/Makefile index a80709bbdf4f..6ac8c3eb32d4 100644 --- a/net/intel-ixl-kmod/Makefile +++ b/net/intel-ixl-kmod/Makefile @@ -33,6 +33,10 @@ ONLY_FOR_ARCHS_REASON= Not supported on other architectures, amd64 only. IGNORE= is not supported on FreeBSD 10.1 and older .endif +.if ${OSVERSION} >= 1100000 +BROKEN= does not build +.endif + do-install: ${INSTALL_KLD} ${WRKSRC}/if_${PORTNAME}.ko ${STAGEDIR}${KMODDIR}/if_${PORTNAME}_updated.ko ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.4 ${STAGEDIR}${MAN4PREFIX}/man/man4/ diff --git a/sysutils/intel-nvmupdate/Makefile b/sysutils/intel-nvmupdate/Makefile index 6253e56c5b4e..16309b22e1f7 100644 --- a/sysutils/intel-nvmupdate/Makefile +++ b/sysutils/intel-nvmupdate/Makefile @@ -40,6 +40,10 @@ NVMUPDATE_DIR= intel-nvmupdate IGNORE= is not supported on FreeBSD 10.1 and older .endif +.if ${OSVERSION} >= 1100000 +BROKEN= core dump on application startup +.endif + do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/${NVMUPDATE_DIR} cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${NVMUPDATE_DIR} "! -name 'nvmupdate64e'" |