git: edec803c5b72 - main - tools/build/make.py: Add missing comma to fix tinderbox and worlds

From: Jessica Clarke <jrtc27_at_FreeBSD.org>
Date: Sat, 20 Jan 2024 22:09:21 UTC
The branch main has been updated by jrtc27:

URL: https://cgit.FreeBSD.org/src/commit/?id=edec803c5b72681b39ce969cc16d634e08bb3ac2

commit edec803c5b72681b39ce969cc16d634e08bb3ac2
Author:     Jessica Clarke <jrtc27@FreeBSD.org>
AuthorDate: 2024-01-20 22:07:48 +0000
Commit:     Jessica Clarke <jrtc27@FreeBSD.org>
CommitDate: 2024-01-20 22:07:48 +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")
---
 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 5c483e8b45be..1cca5b14ec70 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",