From owner-svn-src-all@freebsd.org Fri Sep 8 04:46:57 2017 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 CB8A3E02671; Fri, 8 Sep 2017 04:46:57 +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 4D38173696; Fri, 8 Sep 2017 04:46:57 +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 v884ku5X033347; Fri, 8 Sep 2017 04:46:56 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v884ktbV033343; Fri, 8 Sep 2017 04:46:55 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201709080446.v884ktbV033343@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Ngie Cooper Date: Fri, 8 Sep 2017 04:46:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org Subject: svn commit: r323302 - in stable/11: bin sbin usr.bin usr.sbin X-SVN-Group: stable-11 X-SVN-Commit-Author: ngie X-SVN-Commit-Paths: in stable/11: bin sbin usr.bin usr.sbin X-SVN-Commit-Revision: 323302 X-SVN-Commit-Repository: base 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.23 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: Fri, 08 Sep 2017 04:46:58 -0000 Author: ngie Date: Fri Sep 8 04:46:55 2017 New Revision: 323302 URL: https://svnweb.freebsd.org/changeset/base/323302 Log: MFC r320701: 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. Modified: stable/11/bin/Makefile stable/11/sbin/Makefile stable/11/usr.bin/Makefile stable/11/usr.sbin/Makefile Directory Properties: stable/11/ (props changed) Modified: stable/11/bin/Makefile ============================================================================== --- stable/11/bin/Makefile Fri Sep 8 04:45:18 2017 (r323301) +++ stable/11/bin/Makefile Fri Sep 8 04:46:55 2017 (r323302) @@ -47,8 +47,6 @@ SUBDIR.${MK_TESTS}+= tests .include -SUBDIR:= ${SUBDIR:O} - SUBDIR_PARALLEL= .include Modified: stable/11/sbin/Makefile ============================================================================== --- stable/11/sbin/Makefile Fri Sep 8 04:45:18 2017 (r323301) +++ stable/11/sbin/Makefile Fri Sep 8 04:46:55 2017 (r323302) @@ -93,8 +93,6 @@ SUBDIR.${MK_TESTS}+= tests .include -SUBDIR:= ${SUBDIR:O} - SUBDIR_PARALLEL= .include Modified: stable/11/usr.bin/Makefile ============================================================================== --- stable/11/usr.bin/Makefile Fri Sep 8 04:45:18 2017 (r323301) +++ stable/11/usr.bin/Makefile Fri Sep 8 04:46:55 2017 (r323302) @@ -311,8 +311,6 @@ SUBDIR+= mkesdb_static .include -SUBDIR:= ${SUBDIR:O:u} - SUBDIR_PARALLEL= .include Modified: stable/11/usr.sbin/Makefile ============================================================================== --- stable/11/usr.sbin/Makefile Fri Sep 8 04:45:18 2017 (r323301) +++ stable/11/usr.sbin/Makefile Fri Sep 8 04:46:55 2017 (r323302) @@ -217,8 +217,6 @@ SUBDIR.${MK_TESTS}+= tests .include -SUBDIR:= ${SUBDIR:O} - SUBDIR_PARALLEL= .include