From owner-svn-src-user@FreeBSD.ORG Wed Feb 17 23:54:55 2010 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5852106566C; Wed, 17 Feb 2010 23:54:54 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D583A8FC1A; Wed, 17 Feb 2010 23:54:54 +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 o1HNssMG094508; Wed, 17 Feb 2010 23:54:54 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o1HNss06094499; Wed, 17 Feb 2010 23:54:54 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201002172354.o1HNss06094499@svn.freebsd.org> From: Warner Losh Date: Wed, 17 Feb 2010 23:54:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r204022 - user/imp/tbemd/sbin X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Feb 2010 23:54:55 -0000 Author: imp Date: Wed Feb 17 23:54:54 2010 New Revision: 204022 URL: http://svn.freebsd.org/changeset/base/204022 Log: Use SUBDIR := ${SUBDIR:O} in preference to SUBDIR = ${_SUBDIR:O} Submitted by: jmallet@ Modified: user/imp/tbemd/sbin/Makefile user/imp/tbemd/sbin/Makefile.amd64 user/imp/tbemd/sbin/Makefile.arm user/imp/tbemd/sbin/Makefile.i386 user/imp/tbemd/sbin/Makefile.ia64 user/imp/tbemd/sbin/Makefile.mips user/imp/tbemd/sbin/Makefile.pc98 user/imp/tbemd/sbin/Makefile.sparc64 Modified: user/imp/tbemd/sbin/Makefile ============================================================================== --- user/imp/tbemd/sbin/Makefile Wed Feb 17 23:48:47 2010 (r204021) +++ user/imp/tbemd/sbin/Makefile Wed Feb 17 23:54:54 2010 (r204022) @@ -5,7 +5,7 @@ # XXX MISSING: icheck ncheck -_SUBDIR=adjkerntz \ +SUBDIR=adjkerntz \ atacontrol \ badsect \ camcontrol \ @@ -72,42 +72,42 @@ _SUBDIR=adjkerntz \ umount \ .if ${MK_ATM} != "no" -_SUBDIR += atm +SUBDIR += atm .endif .if ${MK_CXX} != "no" -_SUBDIR += devd +SUBDIR += devd .endif .if ${MK_IPFILTER} != "no" -_SUBDIR += ipf +SUBDIR += ipf .endif .if ${MK_IPFW} != "no" -_SUBDIR += ipfw -_SUBDIR += natd +SUBDIR += ipfw +SUBDIR += natd .endif .if ${MK_PF} != "no" -_SUBDIR += pfctl -_SUBDIR += pflogd +SUBDIR += pfctl +SUBDIR += pflogd .endif .if ${MK_INET6} != "no" -_SUBDIR += ping6 -_SUBDIR += rtsol +SUBDIR += ping6 +SUBDIR += rtsol .endif .if ${MK_QUOTAS} != "no" -_SUBDIR += quotacheck +SUBDIR += quotacheck .endif .if ${MK_ROUTED} != "no" -_SUBDIR += routed +SUBDIR += routed .endif .include -SUBDIR=${_SUBDIR:O} +SUBDIR := ${SUBDIR:O} .include Modified: user/imp/tbemd/sbin/Makefile.amd64 ============================================================================== --- user/imp/tbemd/sbin/Makefile.amd64 Wed Feb 17 23:48:47 2010 (r204021) +++ user/imp/tbemd/sbin/Makefile.amd64 Wed Feb 17 23:54:54 2010 (r204022) @@ -1,4 +1,4 @@ # $FreeBSD$ -_SUBDIR += bsdlabel -_SUBDIR += fdisk +SUBDIR += bsdlabel +SUBDIR += fdisk Modified: user/imp/tbemd/sbin/Makefile.arm ============================================================================== --- user/imp/tbemd/sbin/Makefile.arm Wed Feb 17 23:48:47 2010 (r204021) +++ user/imp/tbemd/sbin/Makefile.arm Wed Feb 17 23:54:54 2010 (r204022) @@ -1,4 +1,4 @@ # $FreeBSD$ -_SUBDIR += bsdlabel -_SUBDIR += fdisk +SUBDIR += bsdlabel +SUBDIR += fdisk Modified: user/imp/tbemd/sbin/Makefile.i386 ============================================================================== --- user/imp/tbemd/sbin/Makefile.i386 Wed Feb 17 23:48:47 2010 (r204021) +++ user/imp/tbemd/sbin/Makefile.i386 Wed Feb 17 23:54:54 2010 (r204022) @@ -1,5 +1,5 @@ # $FreeBSD$ -_SUBDIR += bsdlabel -_SUBDIR += fdisk -_SUBDIR += sconfig +SUBDIR += bsdlabel +SUBDIR += fdisk +SUBDIR += sconfig Modified: user/imp/tbemd/sbin/Makefile.ia64 ============================================================================== --- user/imp/tbemd/sbin/Makefile.ia64 Wed Feb 17 23:48:47 2010 (r204021) +++ user/imp/tbemd/sbin/Makefile.ia64 Wed Feb 17 23:54:54 2010 (r204022) @@ -1,3 +1,3 @@ # $FreeBSD$ -_SUBDIR += mca +SUBDIR += mca Modified: user/imp/tbemd/sbin/Makefile.mips ============================================================================== --- user/imp/tbemd/sbin/Makefile.mips Wed Feb 17 23:48:47 2010 (r204021) +++ user/imp/tbemd/sbin/Makefile.mips Wed Feb 17 23:54:54 2010 (r204022) @@ -1,4 +1,4 @@ # $FreeBSD$ -_SUBDIR += bsdlabel -_SUBDIR += fdisk +SUBDIR += bsdlabel +SUBDIR += fdisk Modified: user/imp/tbemd/sbin/Makefile.pc98 ============================================================================== --- user/imp/tbemd/sbin/Makefile.pc98 Wed Feb 17 23:48:47 2010 (r204021) +++ user/imp/tbemd/sbin/Makefile.pc98 Wed Feb 17 23:54:54 2010 (r204022) @@ -1,5 +1,5 @@ # $FreeBSD$ -_SUBDIR += bsdlabel -_SUBDIR += fdisk_pc98 -_SUBDIR += sconfig +SUBDIR += bsdlabel +SUBDIR += fdisk_pc98 +SUBDIR += sconfig Modified: user/imp/tbemd/sbin/Makefile.sparc64 ============================================================================== --- user/imp/tbemd/sbin/Makefile.sparc64 Wed Feb 17 23:48:47 2010 (r204021) +++ user/imp/tbemd/sbin/Makefile.sparc64 Wed Feb 17 23:54:54 2010 (r204022) @@ -1,4 +1,4 @@ # $FreeBSD$ -_SUBDIR += bsdlabel -_SUBDIR += sunlabel +SUBDIR += bsdlabel +SUBDIR += sunlabel