From owner-svn-src-stable@FreeBSD.ORG Sat Mar 27 17:14:55 2010 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9F8B106566C; Sat, 27 Mar 2010 17:14:55 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B71358FC0A; Sat, 27 Mar 2010 17:14:55 +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 o2RHEtZJ048146; Sat, 27 Mar 2010 17:14:55 GMT (envelope-from bz@svn.freebsd.org) Received: (from bz@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o2RHEtll048138; Sat, 27 Mar 2010 17:14:55 GMT (envelope-from bz@svn.freebsd.org) Message-Id: <201003271714.o2RHEtll048138@svn.freebsd.org> From: "Bjoern A. Zeeb" Date: Sat, 27 Mar 2010 17:14:55 +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: r205745 - in stable/8/sys: amd64/conf i386/conf ia64/conf pc98/conf powerpc/conf sparc64/conf sun4v/conf X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 27 Mar 2010 17:14:56 -0000 Author: bz Date: Sat Mar 27 17:14:55 2010 New Revision: 205745 URL: http://svn.freebsd.org/changeset/base/205745 Log: MFC r201813: In sys//conf/Makefile set TARGET to . That allows sys/conf/makeLINT.mk to only do certain things for certain architectures. Note that neither arm nor mips have the Makefile there, thus essentially not (yet) supporting LINT. This would enable them do add special treatment to sys/conf/makeLINT.mk as well chosing one of the many configurations as LINT. Modified: stable/8/sys/amd64/conf/Makefile stable/8/sys/i386/conf/Makefile stable/8/sys/ia64/conf/Makefile stable/8/sys/pc98/conf/Makefile stable/8/sys/powerpc/conf/Makefile stable/8/sys/sparc64/conf/Makefile stable/8/sys/sun4v/conf/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/amd64/conf/Makefile ============================================================================== --- stable/8/sys/amd64/conf/Makefile Sat Mar 27 17:11:06 2010 (r205744) +++ stable/8/sys/amd64/conf/Makefile Sat Mar 27 17:14:55 2010 (r205745) @@ -1,3 +1,5 @@ # $FreeBSD$ +TARGET=amd64 + .include "${.CURDIR}/../../conf/makeLINT.mk" Modified: stable/8/sys/i386/conf/Makefile ============================================================================== --- stable/8/sys/i386/conf/Makefile Sat Mar 27 17:11:06 2010 (r205744) +++ stable/8/sys/i386/conf/Makefile Sat Mar 27 17:14:55 2010 (r205745) @@ -1,3 +1,5 @@ # $FreeBSD$ +TARGET=i386 + .include "${.CURDIR}/../../conf/makeLINT.mk" Modified: stable/8/sys/ia64/conf/Makefile ============================================================================== --- stable/8/sys/ia64/conf/Makefile Sat Mar 27 17:11:06 2010 (r205744) +++ stable/8/sys/ia64/conf/Makefile Sat Mar 27 17:14:55 2010 (r205745) @@ -1,3 +1,5 @@ # $FreeBSD$ +TARGET=ia64 + .include "${.CURDIR}/../../conf/makeLINT.mk" Modified: stable/8/sys/pc98/conf/Makefile ============================================================================== --- stable/8/sys/pc98/conf/Makefile Sat Mar 27 17:11:06 2010 (r205744) +++ stable/8/sys/pc98/conf/Makefile Sat Mar 27 17:14:55 2010 (r205745) @@ -1,3 +1,5 @@ # $FreeBSD$ +TARGET=pc98 + .include "${.CURDIR}/../../conf/makeLINT.mk" Modified: stable/8/sys/powerpc/conf/Makefile ============================================================================== --- stable/8/sys/powerpc/conf/Makefile Sat Mar 27 17:11:06 2010 (r205744) +++ stable/8/sys/powerpc/conf/Makefile Sat Mar 27 17:14:55 2010 (r205745) @@ -1,3 +1,5 @@ # $FreeBSD$ +TARGET=powerpc + .include "${.CURDIR}/../../conf/makeLINT.mk" Modified: stable/8/sys/sparc64/conf/Makefile ============================================================================== --- stable/8/sys/sparc64/conf/Makefile Sat Mar 27 17:11:06 2010 (r205744) +++ stable/8/sys/sparc64/conf/Makefile Sat Mar 27 17:14:55 2010 (r205745) @@ -1,3 +1,5 @@ # $FreeBSD$ +TARGET=sparc64 + .include "${.CURDIR}/../../conf/makeLINT.mk" Modified: stable/8/sys/sun4v/conf/Makefile ============================================================================== --- stable/8/sys/sun4v/conf/Makefile Sat Mar 27 17:11:06 2010 (r205744) +++ stable/8/sys/sun4v/conf/Makefile Sat Mar 27 17:14:55 2010 (r205745) @@ -1,3 +1,5 @@ # $FreeBSD$ +TARGET=sun4v + .include "${.CURDIR}/../../conf/makeLINT.mk"