From owner-svn-src-stable-8@FreeBSD.ORG Wed Dec 30 17:42:42 2009 Return-Path: Delivered-To: svn-src-stable-8@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1B4AD106566C; Wed, 30 Dec 2009 17:42:42 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 0A3968FC1A; Wed, 30 Dec 2009 17:42:42 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id nBUHgfIo065822; Wed, 30 Dec 2009 17:42:41 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id nBUHgf0c065820; Wed, 30 Dec 2009 17:42:41 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <200912301742.nBUHgf0c065820@svn.freebsd.org> From: John Baldwin Date: Wed, 30 Dec 2009 17:42:41 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r201265 - stable/8/sys/boot/i386 X-BeenThere: svn-src-stable-8@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 8-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Dec 2009 17:42:42 -0000 Author: jhb Date: Wed Dec 30 17:42:41 2009 New Revision: 201265 URL: http://svn.freebsd.org/changeset/base/201265 Log: MFC 200872: Don't build zfsboot, gptzfsboot, and zfsloader if WITHOUT_ZFS is enabled. Modified: stable/8/sys/boot/i386/Makefile Directory Properties: stable/8/sys/ (props changed) stable/8/sys/amd64/include/xen/ (props changed) stable/8/sys/cddl/contrib/opensolaris/ (props changed) stable/8/sys/contrib/dev/acpica/ (props changed) stable/8/sys/contrib/pf/ (props changed) stable/8/sys/dev/xen/xenpci/ (props changed) Modified: stable/8/sys/boot/i386/Makefile ============================================================================== --- stable/8/sys/boot/i386/Makefile Wed Dec 30 17:23:27 2009 (r201264) +++ stable/8/sys/boot/i386/Makefile Wed Dec 30 17:42:41 2009 (r201265) @@ -1,9 +1,15 @@ # $FreeBSD$ -SUBDIR= mbr pmbr boot0 boot0sio btx boot2 cdboot gptboot zfsboot \ - gptzfsboot kgzldr libi386 libfirewire loader zfsloader +.include + +SUBDIR= mbr pmbr boot0 boot0sio btx boot2 cdboot gptboot kgzldr \ + libi386 libfirewire loader # special boot programs, 'self-extracting boot2+loader' SUBDIR+= pxeldr +.if ${MK_ZFS} != "no" +SUBDIR+= zfsboot gptzfsboot zfsloader +.endif + .include