From owner-svn-src-all@FreeBSD.ORG Wed Jul 18 07:07:54 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CBA96106564A; Wed, 18 Jul 2012 07:07:54 +0000 (UTC) (envelope-from obrien@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B626E8FC15; Wed, 18 Jul 2012 07:07:54 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q6I77sG5039468; Wed, 18 Jul 2012 07:07:54 GMT (envelope-from obrien@svn.freebsd.org) Received: (from obrien@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q6I77sdO039466; Wed, 18 Jul 2012 07:07:54 GMT (envelope-from obrien@svn.freebsd.org) Message-Id: <201207180707.q6I77sdO039466@svn.freebsd.org> From: "David E. O'Brien" Date: Wed, 18 Jul 2012 07:07:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r238564 - head/usr.bin X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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: Wed, 18 Jul 2012 07:07:54 -0000 Author: obrien Date: Wed Jul 18 07:07:54 2012 New Revision: 238564 URL: http://svn.freebsd.org/changeset/base/238564 Log: Sort per the comment. Modified: head/usr.bin/Makefile Modified: head/usr.bin/Makefile ============================================================================== --- head/usr.bin/Makefile Wed Jul 18 05:57:42 2012 (r238563) +++ head/usr.bin/Makefile Wed Jul 18 07:07:54 2012 (r238564) @@ -208,10 +208,6 @@ SUBDIR+= at SUBDIR+= atm .endif -.if ${MK_MAN_UTILS} != "no" -SUBDIR+= catman -.endif - .if ${MK_BIND_UTILS} != "no" SUBDIR+= dig SUBDIR+= host @@ -235,6 +231,10 @@ SUBDIR+= calendar _clang= clang .endif +.if ${MK_GROFF} != "no" +SUBDIR+= vgrind +.endif + .if ${MK_HESIOD} != "no" SUBDIR+= hesinfo .endif @@ -245,15 +245,8 @@ _mkcsmapper= mkcsmapper _mkesdb= mkesdb .endif -.if ${MK_GROFF} != "no" -SUBDIR+= vgrind -.endif - -.if ${MK_OPENSSL} != "no" -SUBDIR+= bc -SUBDIR+= chkey -SUBDIR+= dc -SUBDIR+= newkey +.if ${MK_KERBEROS_SUPPORT} != "no" +SUBDIR+= compile_et .endif .if ${MK_LIBTHR} != "no" @@ -264,10 +257,6 @@ SUBDIR+= csup SUBDIR+= locate .endif -.if ${MK_KERBEROS_SUPPORT} != "no" -SUBDIR+= compile_et -.endif - # XXX msgs? .if ${MK_MAIL} != "no" SUBDIR+= biff @@ -281,6 +270,7 @@ SUBDIR+= make .endif .if ${MK_MAN_UTILS} != "no" +SUBDIR+= catman _makewhatis= makewhatis _man= man .endif @@ -295,6 +285,13 @@ SUBDIR+= ypmatch SUBDIR+= ypwhich .endif +.if ${MK_OPENSSL} != "no" +SUBDIR+= bc +SUBDIR+= chkey +SUBDIR+= dc +SUBDIR+= newkey +.endif + .if ${MK_QUOTAS} != "no" SUBDIR+= quota .endif