6YZGrg97QRU4+lqTSI4UuAzb 3R3PhMUp45GqyjZaTDwHH+Ns3ua6dIoaT+xtAW475ZkiYsnooB38Q8AmzqZDJZVLTNI6F8 TCABSS/hna8ZfmkqRWOnLNgtJkCIi871j0qUXFz1zOZt9FgkfYUkx4puxfhVyA== ARC-Seal: i=1; s=dkim; d=freebsd.org; t=1760380308; a=rsa-sha256; cv=none; b=uFHHSz3JBK8jC3UAD7P196VTZ5jFX/n3Aqml+U+qCSY/w09QWLGxNxfTUeWxyo7i5Sz8cQ Pcobb3faPIQN1pLVbI/zdSnhqeIfT237uyxGzTc9iU6EFelrsEnibBCNv0CUsY7a63VUBl RRk1NFX5xCtmC0mI+qI2MwYkpjT3ZSZbo5+/dCtQ/owfjz9+NkuUtPlT9fbG5mMapnO8WX ahVgPeANbjzwThPpt6U1hFIiZyux/+xjCPswX75dWGbodoeqi1eSl5TY75o817TWlW2y2H vyBuOpCPaiyOmpjxXWzIJrdSZgoIiFkemxWIF4qJErnwhHrGWYDm8qA1p9QaWA== ARC-Authentication-Results: i=1; mx1.freebsd.org; none Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4clmCS121Zz3d5; Mon, 13 Oct 2025 18:31:48 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.18.1/8.18.1) with ESMTP id 59DIVmIN003138; Mon, 13 Oct 2025 18:31:48 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.18.1/8.18.1/Submit) id 59DIVmuU003135; Mon, 13 Oct 2025 18:31:48 GMT (envelope-from git) Date: Mon, 13 Oct 2025 18:31:48 GMT Message-Id: <202510131831.59DIVmuU003135@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Lexi Winter Subject: git: ea5685ba79fc - main - Makefile.inc1: Build source packages before sets List-Id: Commit messages for all branches of the src repository List-Archive: https://lists.freebsd.org/archives/dev-commits-src-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: dev-commits-src-all@freebsd.org Sender: owner-dev-commits-src-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: ivy X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: ea5685ba79fc9309698ef72cf48bc1f0c91ad3dd Auto-Submitted: auto-generated The branch main has been updated by ivy: URL: https://cgit.FreeBSD.org/src/commit/?id=ea5685ba79fc9309698ef72cf48bc1f0c91ad3dd commit ea5685ba79fc9309698ef72cf48bc1f0c91ad3dd Author: Lexi Winter AuthorDate: 2025-10-13 18:30:31 +0000 Commit: Lexi Winter CommitDate: 2025-10-13 18:31:36 +0000 Makefile.inc1: Build source packages before sets To build set-src, we first need to build the source packages. Add a .ORDER to ensure this happens. Otherwise, in a parallel build, sets might be built before the src-* packages have finished building, and set-src will be mysteriously missing. MFC after: 3 seconds Reported by: cperciva Actually diagnosed by: jrtc27 One-line fix by: ivy Reviewed by: cperciva Differential Revision: https://reviews.freebsd.org/D53076 --- Makefile.inc1 | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.inc1 b/Makefile.inc1 index 74c4598dd092..e079a23552f1 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -2094,6 +2094,7 @@ create-packages-world: _pkgbootstrap _repodir .PHONY .ORDER: create-packages-world create-packages-sets .ORDER: create-packages-kernel create-packages-sets +.ORDER: create-packages-source create-packages-sets create-packages-sets: _pkgbootstrap _repodir .PHONY ${_+_}@cd ${.CURDIR}; \ ${MAKE} -f Makefile.inc1 \