Skip to content

Commit

Permalink
remove BOARD parameter from 'make submodules' (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
hmaerki authored Jan 30, 2025
1 parent da4bb3f commit a26c219
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/mpbuild/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,7 @@ def docker_build_cmd(
args = " " + " ".join(extra_args)

make_mpy_cross_cmd = "make -C mpy-cross && "
update_submodules_cmd = (
f"make -C ports/{port.name} submodules BOARD={board.name}{variant_cmd} && "
)
update_submodules_cmd = f"make -C ports/{port.name} submodules && "

uid, gid = os.getuid(), os.getgid()

Expand Down

0 comments on commit a26c219

Please sign in to comment.