svn commit: r482220 - head/net/intel-ixl-kmod

Serhii (Sergey) Kozlov skozlov at FreeBSD.org
Tue Oct 16 12:02:51 UTC 2018


Author: skozlov
Date: Tue Oct 16 12:02:50 2018
New Revision: 482220
URL: https://svnweb.freebsd.org/changeset/ports/482220

Log:
  net/intel-ixl-kmod: Remove -Werror from CFLAGS
  
  -Werror in CFLAGS may cause overreaction if a custom compiler or
  compilation options are used. To avoid this - WERROR is disabled
  in kmod.mk
  
  Compile and sanity checked intel-{ixl,ix,em}-kmod using
  poudriere+portlint
  
  Approved By: sbruno (mentor), koobs,
               franco_opnsense.org (intel-em-kmod maintainer)
  
  Differential Revision: https://reviews.freebsd.org/D17533

Modified:
  head/net/intel-ixl-kmod/Makefile

Modified: head/net/intel-ixl-kmod/Makefile
==============================================================================
--- head/net/intel-ixl-kmod/Makefile	Tue Oct 16 12:02:28 2018	(r482219)
+++ head/net/intel-ixl-kmod/Makefile	Tue Oct 16 12:02:50 2018	(r482220)
@@ -39,6 +39,7 @@ MANPAGENAME?=	${PORTNAME}
 MANPAGELINKS?=	if_${PORTNAME}
 PLIST_FILES=	${KMODDIR}/if_${PORTNAME}_updated.ko \
 		man/man4/${MANPAGENAME}.4.gz
+MAKE_ENV+=	WERROR=""
 
 .for link in ${MANPAGELINKS}
 PLIST_FILES+=	man/man4/${link}.4.gz


More information about the svn-ports-all mailing list