svn commit: r297393 - head/sys/modules/urtwn

Bryan Drewery bdrewery at FreeBSD.org
Tue Mar 29 15:26:54 UTC 2016


Author: bdrewery
Date: Tue Mar 29 15:26:53 2016
New Revision: 297393
URL: https://svnweb.freebsd.org/changeset/base/297393

Log:
  Use proper kern.opts.mk rather than src.opts.mk from r297058.
  
  Reported by:	kib
  Sponsored by:	EMC / Isilon Storage Division

Modified:
  head/sys/modules/urtwn/Makefile

Modified: head/sys/modules/urtwn/Makefile
==============================================================================
--- head/sys/modules/urtwn/Makefile	Tue Mar 29 15:19:56 2016	(r297392)
+++ head/sys/modules/urtwn/Makefile	Tue Mar 29 15:26:53 2016	(r297393)
@@ -2,7 +2,8 @@
 
 .PATH: ${.CURDIR}/../../dev/urtwn
 
-.include <src.opts.mk>
+SYSDIR?=${.CURDIR}/../..
+.include "${SYSDIR}/conf/kern.opts.mk"
 
 KMOD    = if_urtwn
 SRCS    = if_urtwn.c if_urtwnreg.h if_urtwnvar.h \


More information about the svn-src-all mailing list