Skip to content

Commit

Permalink
Merge pull request tock#4276 from tock/makefile-sleep-mac
Browse files Browse the repository at this point in the history
boards: make: sleep on mac no units
  • Loading branch information
alevy authored Dec 20, 2024
2 parents 9ae7d61 + 0856759 commit b842f65
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion boards/Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@ endif
ifneq ($(shell $(RUSTUP) target list | grep "$(TARGET) (installed)"),$(TARGET) (installed))
$(warning Request to compile for a missing TARGET, make will install in 5s)
$(warning Consider updating 'targets' in 'rust-toolchain.toml')
$(shell sleep 5s && $(RUSTUP) target add $(TARGET))
$(shell sleep 5)
$(shell $(RUSTUP) target add $(TARGET))
endif
endif # $(NO_RUSTUP)

Expand Down

0 comments on commit b842f65

Please sign in to comment.