Tools: use program group "tool" instead of "tools"

This commit is contained in:
Siddharth Purohit 2021-07-05 15:07:52 +05:30 committed by Andrew Tridgell
parent 70a161a583
commit f1c865bdd3
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
all:
@cd ../../ && modules/waf/waf-light configure --board linux --debug
@cd ../../ && modules/waf/waf-light tools
@cp ../../build/linux/tools/CPUInfo CPUInfo.elf
@cp ../../build/linux/tool/CPUInfo CPUInfo.elf
@echo Built CPUInfo.elf
clean:

View File

@ -4,5 +4,5 @@
def build(bld):
bld.ap_program(
use='ap',
program_groups='tools',
program_groups=['tool'],
)