svn commit: r277682 - head/include

Garrett Cooper ngie at FreeBSD.org
Sun Jan 25 05:15:07 UTC 2015


Author: ngie
Date: Sun Jan 25 05:15:06 2015
New Revision: 277682
URL: https://svnweb.freebsd.org/changeset/base/277682

Log:
  Make install cuse headers if MK_CUSE != no
  
  MFC after: 2 weeks
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/include/Makefile

Modified: head/include/Makefile
==============================================================================
--- head/include/Makefile	Sun Jan 25 05:13:15 2015	(r277681)
+++ head/include/Makefile	Sun Jan 25 05:15:06 2015	(r277682)
@@ -45,7 +45,6 @@ LSUBDIRS=	cam/ata cam/scsi \
 	dev/ic dev/iicbus dev/io dev/lmc dev/mfi dev/nvme \
 	dev/ofw dev/pbio dev/pci ${_dev_powermac_nvram} dev/ppbus dev/smbus \
 	dev/speaker dev/usb dev/utopia dev/vkbd dev/wi \
-	fs/cuse \
 	fs/devfs fs/fdescfs fs/msdosfs fs/nandfs fs/nfs fs/nullfs \
 	fs/procfs fs/smbfs fs/udf fs/unionfs \
 	geom/cache geom/concat geom/eli geom/gate geom/journal geom/label \
@@ -59,6 +58,10 @@ LSUBDIRS=	cam/ata cam/scsi \
 
 LSUBSUBDIRS=	dev/mpt/mpilib
 
+.if ${MK_CUSE} != "no"
+LSUBDIRS+=	fs/cuse
+.endif
+
 .if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "powerpc64"
 _dev_powermac_nvram=	dev/powermac_nvram
 .endif


More information about the svn-src-all mailing list