svn commit: r311900 - head/sys/modules/em

Sean Bruno sbruno at FreeBSD.org
Tue Jan 10 21:21:01 UTC 2017


Author: sbruno
Date: Tue Jan 10 21:21:00 2017
New Revision: 311900
URL: https://svnweb.freebsd.org/changeset/base/311900

Log:
  Set CFLAGS correctly for sys/modules/em
  
  Unbreak gcc sparc64 builds (or any gcc build that uses em(4)).
  
  Reported by:	lidl at freebsd.org

Modified:
  head/sys/modules/em/Makefile

Modified: head/sys/modules/em/Makefile
==============================================================================
--- head/sys/modules/em/Makefile	Tue Jan 10 21:18:32 2017	(r311899)
+++ head/sys/modules/em/Makefile	Tue Jan 10 21:21:00 2017	(r311900)
@@ -17,7 +17,7 @@ PCIE_SHARED = e1000_80003es2lan.c e1000_
 LEGACY_SHARED = e1000_82540.c e1000_82542.c e1000_82541.c e1000_82543.c
 
 
-CFLAGS += -I${.CURDIR}/../../../dev/e1000
+CFLAGS += -I${.CURDIR}/../../dev/e1000
 
 # DEVICE_POLLING for a non-interrupt-driven method
 #CFLAGS  += -DDEVICE_POLLING


More information about the svn-src-all mailing list