From owner-svn-src-user@FreeBSD.ORG  Thu Feb 18 19:52:08 2010
Return-Path: <owner-svn-src-user@FreeBSD.ORG>
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 26C6F106566B;
	Thu, 18 Feb 2010 19:52:08 +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 17A9F8FC13;
	Thu, 18 Feb 2010 19:52:08 +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 o1IJq7WE062103;
	Thu, 18 Feb 2010 19:52:07 GMT (envelope-from imp@svn.freebsd.org)
Received: (from imp@localhost)
	by svn.freebsd.org (8.14.3/8.14.3/Submit) id o1IJq7Mb062101;
	Thu, 18 Feb 2010 19:52:07 GMT (envelope-from imp@svn.freebsd.org)
Message-Id: <201002181952.o1IJq7Mb062101@svn.freebsd.org>
From: Warner Losh <imp@FreeBSD.org>
Date: Thu, 18 Feb 2010 19:52:07 +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: r204058 - 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 &quot; user&quot;
	src tree" <svn-src-user.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/listinfo/svn-src-user>,
	<mailto:svn-src-user-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/svn-src-user>
List-Post: <mailto:svn-src-user@freebsd.org>
List-Help: <mailto:svn-src-user-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/svn-src-user>,
	<mailto:svn-src-user-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 18 Feb 2010 19:52:08 -0000

Author: imp
Date: Thu Feb 18 19:52:07 2010
New Revision: 204058
URL: http://svn.freebsd.org/changeset/base/204058

Log:
  Make this conform more closely to style.Makefile(5).
  
  Submitted by:	bde

Modified:
  user/imp/tbemd/sbin/Makefile

Modified: user/imp/tbemd/sbin/Makefile
==============================================================================
--- user/imp/tbemd/sbin/Makefile	Thu Feb 18 19:50:31 2010	(r204057)
+++ user/imp/tbemd/sbin/Makefile	Thu Feb 18 19:52:07 2010	(r204058)
@@ -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 <bsd.arch.inc.mk>
 
-SUBDIR := ${SUBDIR:O}
+SUBDIR:=	${SUBDIR:O}
 
 .include <bsd.subdir.mk>