From owner-svn-src-head@freebsd.org Thu Jul 6 04:15:32 2017 Return-Path: Delivered-To: svn-src-head@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 4E2E4D9D70E; Thu, 6 Jul 2017 04:15:32 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 1694D7EC5F; Thu, 6 Jul 2017 04:15:31 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v664FVIk085208; Thu, 6 Jul 2017 04:15:31 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v664FU9n085204; Thu, 6 Jul 2017 04:15:30 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201707060415.v664FU9n085204@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Ngie Cooper Date: Thu, 6 Jul 2017 04:15:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r320701 - in head: bin sbin usr.bin usr.sbin X-SVN-Group: head X-SVN-Commit-Author: ngie X-SVN-Commit-Paths: in head: bin sbin usr.bin usr.sbin X-SVN-Commit-Revision: 320701 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Jul 2017 04:15:32 -0000 Author: ngie Date: Thu Jul 6 04:15:30 2017 New Revision: 320701 URL: https://svnweb.freebsd.org/changeset/base/320701 Log: Remove SUBDIR ordering/uniquifying in *bin/Makefile After the addition of SUBDIR.yes, uniquifying/ordering the SUBDIRs doesn't make a whole lot of sense, and it's in effect a half measure. Ordering SUBDIR (after adding SUBDIR.yes to it) in bsd.subdir.mk is a separate change that warrants more discussion/testing, because while the SUBDIR_PARALLEL work largely fixed dependency ordering for SUBDIRs, there might be downstream FreeBSD consumers that rely on the SUBDIR ordering. MFC after: 2 months Reviewed by: bdrewery Differential Revision: D11398 Modified: head/bin/Makefile head/sbin/Makefile head/usr.bin/Makefile head/usr.sbin/Makefile Modified: head/bin/Makefile ============================================================================== --- head/bin/Makefile Thu Jul 6 04:06:25 2017 (r320700) +++ head/bin/Makefile Thu Jul 6 04:15:30 2017 (r320701) @@ -47,8 +47,6 @@ SUBDIR.${MK_TESTS}+= tests .include -SUBDIR:= ${SUBDIR:O} - SUBDIR_PARALLEL= .include Modified: head/sbin/Makefile ============================================================================== --- head/sbin/Makefile Thu Jul 6 04:06:25 2017 (r320700) +++ head/sbin/Makefile Thu Jul 6 04:15:30 2017 (r320701) @@ -93,8 +93,6 @@ SUBDIR.${MK_TESTS}+= tests .include -SUBDIR:= ${SUBDIR:O} - SUBDIR_PARALLEL= .include Modified: head/usr.bin/Makefile ============================================================================== --- head/usr.bin/Makefile Thu Jul 6 04:06:25 2017 (r320700) +++ head/usr.bin/Makefile Thu Jul 6 04:15:30 2017 (r320701) @@ -306,8 +306,6 @@ SUBDIR+= mkesdb_static .include -SUBDIR:= ${SUBDIR:O:u} - SUBDIR_PARALLEL= .include Modified: head/usr.sbin/Makefile ============================================================================== --- head/usr.sbin/Makefile Thu Jul 6 04:06:25 2017 (r320700) +++ head/usr.sbin/Makefile Thu Jul 6 04:15:30 2017 (r320701) @@ -218,8 +218,6 @@ SUBDIR.${MK_TESTS}+= tests .include -SUBDIR:= ${SUBDIR:O} - SUBDIR_PARALLEL= .include