From owner-svn-src-all@freebsd.org Mon Aug 10 20:19:11 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 46A3999EF4F; Mon, 10 Aug 2015 20:19:11 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2B64AB99; Mon, 10 Aug 2015 20:19:11 +0000 (UTC) (envelope-from emaste@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t7AKJBcG016549; Mon, 10 Aug 2015 20:19:11 GMT (envelope-from emaste@FreeBSD.org) Received: (from emaste@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t7AKJBji016548; Mon, 10 Aug 2015 20:19:11 GMT (envelope-from emaste@FreeBSD.org) Message-Id: <201508102019.t7AKJBji016548@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: emaste set sender to emaste@FreeBSD.org using -f From: Ed Maste Date: Mon, 10 Aug 2015 20:19:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r286592 - head/usr.bin X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Aug 2015 20:19:11 -0000 Author: emaste Date: Mon Aug 10 20:19:10 2015 New Revision: 286592 URL: https://svnweb.freebsd.org/changeset/base/286592 Log: Use consistent style for optional subdirectories Reviewed by: imp Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D3356 Modified: head/usr.bin/Makefile Modified: head/usr.bin/Makefile ============================================================================== --- head/usr.bin/Makefile Mon Aug 10 20:08:09 2015 (r286591) +++ head/usr.bin/Makefile Mon Aug 10 20:19:10 2015 (r286592) @@ -9,8 +9,7 @@ # Moved to secure: bdes # -SUBDIR= ${_addr2line} \ - alias \ +SUBDIR= alias \ apply \ asa \ awk \ @@ -24,7 +23,6 @@ SUBDIR= ${_addr2line} \ chat \ chpass \ cksum \ - ${_clang} \ cmp \ col \ colldef \ @@ -36,12 +34,10 @@ SUBDIR= ${_addr2line} \ csplit \ ctlstat \ cut \ - ${_cxxfilt} \ dirname \ dpv \ du \ elf2aout \ - ${_elfcopy} \ elfdump \ enigma \ env \ @@ -62,7 +58,6 @@ SUBDIR= ${_addr2line} \ gzip \ head \ hexdump \ - ${_iconv} \ id \ ident \ ipcrm \ @@ -94,15 +89,11 @@ SUBDIR= ${_addr2line} \ lsvfs \ lzmainfo \ m4 \ - ${_makewhatis} \ - ${_man} \ mandoc \ mesg \ minigzip \ ministat \ - ${_mkcsmapper} \ mkdep \ - ${_mkesdb} \ mkfifo \ mkimg \ mklocale \ @@ -116,7 +107,6 @@ SUBDIR= ${_addr2line} \ nfsstat \ nice \ nl \ - ${_nm} \ numactl \ nohup \ opieinfo \ @@ -134,7 +124,6 @@ SUBDIR= ${_addr2line} \ procstat \ protect \ rctl \ - ${_readelf} \ renice \ rev \ revoke \ @@ -149,14 +138,12 @@ SUBDIR= ${_addr2line} \ seq \ shar \ showmount \ - ${_size} \ sockstat \ soelim \ sort \ split \ stat \ stdbuf \ - ${_strings} \ su \ systat \ tabs \ @@ -164,7 +151,6 @@ SUBDIR= ${_addr2line} \ tar \ tcopy \ tee \ - ${_tests} \ time \ timeout \ tip \ @@ -225,7 +211,7 @@ SUBDIR+= calendar .endif .if ${MK_CLANG} != "no" -_clang= clang +SUBDIR+= clang .endif .if ${MK_EE} != "no" @@ -233,13 +219,13 @@ SUBDIR+= ee .endif .if ${MK_ELFTOOLCHAIN_TOOLS} != "no" -_addr2line= addr2line -_cxxfilt= cxxfilt -_elfcopy= elfcopy -_nm= nm -_readelf= readelf -_size= size -_strings= strings +SUBDIR+= addr2line +SUBDIR+= cxxfilt +SUBDIR+= elfcopy +SUBDIR+= nm +SUBDIR+= readelf +SUBDIR+= size +SUBDIR+= strings .endif .if ${MK_FILE} != "no" @@ -267,9 +253,9 @@ SUBDIR+= hesinfo .endif .if ${MK_ICONV} != "no" -_iconv= iconv -_mkcsmapper= mkcsmapper -_mkesdb= mkesdb +SUBDIR+= iconv +SUBDIR+= mkcsmapper +SUBDIR+= mkesdb .endif .if ${MK_ISCSI} != "no" @@ -311,9 +297,9 @@ SUBDIR+= bmake .if ${MK_MAN_UTILS} != "no" SUBDIR+= catman .if ${MK_MANDOCDB} == "no" -_makewhatis= makewhatis +SUBDIR+= makewhatis .endif -_man= man +SUBDIR+= man .endif .if ${MK_NETCAT} != "no" @@ -361,7 +347,7 @@ SUBDIR+= telnet .endif .if ${MK_TESTS} != "no" -_tests= tests +SUBDIR+= tests .endif .if ${MK_TEXTPROC} != "no"