From owner-svn-src-projects@FreeBSD.ORG Thu Nov 27 09:50:13 2014 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 9001B1F0; Thu, 27 Nov 2014 09:50:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7D65686D; Thu, 27 Nov 2014 09:50:13 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAR9oDcO028837; Thu, 27 Nov 2014 09:50:13 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAR9oDIp028836; Thu, 27 Nov 2014 09:50:13 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201411270950.sAR9oDIp028836@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Garrett Cooper Date: Thu, 27 Nov 2014 09:50:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r275183 - projects/building-blocks/sys/modules X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Nov 2014 09:50:13 -0000 Author: ngie Date: Thu Nov 27 09:50:12 2014 New Revision: 275183 URL: https://svnweb.freebsd.org/changeset/base/275183 Log: Honor MK_AUTOFS Modified: projects/building-blocks/sys/modules/Makefile Modified: projects/building-blocks/sys/modules/Makefile ============================================================================== --- projects/building-blocks/sys/modules/Makefile Thu Nov 27 09:42:40 2014 (r275182) +++ projects/building-blocks/sys/modules/Makefile Thu Nov 27 09:50:12 2014 (r275183) @@ -48,7 +48,7 @@ SUBDIR= \ ata \ ath \ ath_pci \ - autofs \ + ${_autofs} \ ${_auxio} \ ${_bce} \ bfe \ @@ -387,6 +387,10 @@ SUBDIR= \ ${_zfs} \ zlib +.if ${MK_AUTOFS} != "no" || defined(ALL_MODULES) +_autofs= autofs +.endif + .if ${MK_BHYVE} != "no" || defined(ALL_MODULES) _vmm= vmm .endif