diff options
author | ngie <ngie@FreeBSD.org> | 2015-03-24 06:55:08 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-03-24 06:55:08 +0000 |
commit | c363eff24fce54d0e276a33350140db2cd33c11a (patch) | |
tree | c9d15c2de659df11604c5a9be8a60e9ad27c9c92 /include | |
parent | 67ce9fefafb276f90f26ae1847ad17c016a27744 (diff) | |
download | FreeBSD-src-c363eff24fce54d0e276a33350140db2cd33c11a.zip FreeBSD-src-c363eff24fce54d0e276a33350140db2cd33c11a.tar.gz |
MFC r278135,r278202:
r278135 (by amdmi3):
- Remove more files when MK_USB == no
Reviewed by: ngie
Approved by: ngie
Differential Revision: D1600
r278202:
Clean up more usb related files when MK_USB == no when dealing with
manpages, libraries, and binaries
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'include')
-rw-r--r-- | include/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/Makefile b/include/Makefile index 5aa1a47..4aa08ac 100644 --- a/include/Makefile +++ b/include/Makefile @@ -46,7 +46,7 @@ LSUBDIRS= cam/ata cam/scsi \ dev/hwpmc \ dev/ic dev/iicbus ${_dev_ieee488} 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 \ + dev/speaker dev/utopia dev/vkbd dev/wi \ 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 \ @@ -58,6 +58,10 @@ LSUBDIRS= cam/ata cam/scsi \ security/mac_mls security/mac_partition \ ufs/ffs ufs/ufs +.if ${MK_USB} != "no" +LSUBDIRS+= dev/usb +.endif + LSUBSUBDIRS= dev/mpt/mpilib .if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "powerpc64" |