mirror of
https://github.com/opnsense/src.git
synced 2026-06-06 23:32:52 -04:00
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: 5157b451c6 ("tools/build/make.py: Grow the list of MI targets")
This commit is contained in:
parent
c3d7bb5aca
commit
edec803c5b
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ mach_indep_targets = [
|
|||
"cleanuniverse",
|
||||
"universe",
|
||||
"universe-toolchain",
|
||||
"tinderbox"
|
||||
"tinderbox",
|
||||
"worlds",
|
||||
"kernels",
|
||||
"kernel-toolchains",
|
||||
|
|
|
|||
Loading…
Reference in a new issue