1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-30 00:41:17 +01:00

ci/build_system_check: fix typo in function name

This commit is contained in:
Alexandre Abadie 2020-06-25 10:15:23 +02:00
parent a665fcc542
commit e785d43003
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -276,7 +276,7 @@ check_files_in_boards_not_reference_board_var() {
| error_with_message 'Code in boards/ should not use $(BOARDS) to reference files since this breaks external BOARDS changing BOARDSDIR"'
}
check_no_pseudomules_in_makefile_dep() {
check_no_pseudomodules_in_makefile_dep() {
local patterns=()
local pathspec=()
@ -304,7 +304,7 @@ all_checks() {
checks_tests_application_not_defined_in_makefile
checks_develhelp_not_defined_via_cflags
check_files_in_boards_not_reference_board_var
check_no_pseudomules_in_makefile_dep
check_no_pseudomodules_in_makefile_dep
}
main() {