From owner-svn-src-user@FreeBSD.ORG Thu Feb 18 19:50:31 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 7BD4C1065676; Thu, 18 Feb 2010 19:50:31 +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 6CBE28FC15; Thu, 18 Feb 2010 19:50:31 +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 o1IJoVfW061701; Thu, 18 Feb 2010 19:50:31 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o1IJoVLa061699; Thu, 18 Feb 2010 19:50:31 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <201002181950.o1IJoVLa061699@svn.freebsd.org> From: Warner Losh <imp@FreeBSD.org> Date: Thu, 18 Feb 2010 19:50:31 +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: r204057 - user/imp/tbemd/bin 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" <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:50:31 -0000 Author: imp Date: Thu Feb 18 19:50:31 2010 New Revision: 204057 URL: http://svn.freebsd.org/changeset/base/204057 Log: Make this conform to style.Makefile(5), without overly bloating the diffs. Modified: user/imp/tbemd/bin/Makefile Modified: user/imp/tbemd/bin/Makefile ============================================================================== --- user/imp/tbemd/bin/Makefile Thu Feb 18 19:41:38 2010 (r204056) +++ user/imp/tbemd/bin/Makefile Thu Feb 18 19:50:31 2010 (r204057) @@ -40,19 +40,19 @@ SUBDIR= cat \ uuidgen .if ${MK_RCMDS} != "no" -SUBDIR += rcp +SUBDIR+= rcp .endif .if ${MK_SENDMAIL} != "no" -SUBDIR += rmail +SUBDIR+= rmail .endif .if ${MK_TCSH} != "no" -SUBDIR += csh +SUBDIR+= csh .endif .include <bsd.arch.inc.mk> -SUBDIR := ${SUBDIR:O} +SUBDIR:= ${SUBDIR:O} .include <bsd.subdir.mk>