git: 8161eb6182a8 - stable/14 - tools/build/make.py: Add missing comma to fix tinderbox and worlds
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 07 Sep 2024 01:48:09 UTC
The branch stable/14 has been updated by jrtc27:
URL: https://cgit.FreeBSD.org/src/commit/?id=8161eb6182a8d999e5b2ad2dde9310f8cb09c26e
commit 8161eb6182a8d999e5b2ad2dde9310f8cb09c26e
Author: Jessica Clarke <jrtc27@FreeBSD.org>
AuthorDate: 2024-01-20 22:07:48 +0000
Commit: Jessica Clarke <jrtc27@FreeBSD.org>
CommitDate: 2024-09-07 00:20:36 +0000
tools/build/make.py: Add missing comma to fix tinderbox and worlds
The missing comma meant this was interpreted as a single target called
"tinderboxworlds", and so neither tinderbox nor worlds were recognised
as being MI targets (i.e. still required TARGET(_ARCH) to be given).
Fixes: 5157b451c654 ("tools/build/make.py: Grow the list of MI targets")
(cherry picked from commit edec803c5b72681b39ce969cc16d634e08bb3ac2)
---
tools/build/make.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/build/make.py b/tools/build/make.py
index 5ac99ddb2ee5..a602cc22072c 100755
--- a/tools/build/make.py
+++ b/tools/build/make.py
@@ -55,7 +55,7 @@ mach_indep_targets = [
"cleanuniverse",
"universe",
"universe-toolchain",
- "tinderbox"
+ "tinderbox",
"worlds",
"kernels",
"kernel-toolchains",