svn commit: r195374 - head/sys/modules

Edward Tomasz Napierala trasz at FreeBSD.org
Sun Jul 5 15:25:03 UTC 2009


Author: trasz
Date: Sun Jul  5 15:25:02 2009
New Revision: 195374
URL: http://svn.freebsd.org/changeset/base/195374

Log:
  When the kernel is configured without "options FFS", build UFS as a module
  without requiring any special build flags.
  
  Approved by:	re (kib)

Modified:
  head/sys/modules/Makefile

Modified: head/sys/modules/Makefile
==============================================================================
--- head/sys/modules/Makefile	Sun Jul  5 15:23:54 2009	(r195373)
+++ head/sys/modules/Makefile	Sun Jul  5 15:25:02 2009	(r195374)
@@ -271,7 +271,7 @@ SUBDIR=	${_3dfx} \
 	ubsec \
 	udf \
 	udf_iconv \
-	${_ufs} \
+	ufs \
 	unionfs \
 	usb \
 	utopia \
@@ -304,10 +304,6 @@ _syscons=	syscons
 _vpo=		vpo
 .endif
 
-.if defined(ALL_MODULES)
-_ufs=		ufs
-.endif
-
 .if ${MK_CRYPT} != "no" || defined(ALL_MODULES)
 .if exists(${.CURDIR}/../opencrypto)
 _crypto=	crypto


More information about the svn-src-all mailing list