mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-15 17:43:51 +01:00
Merge pull request #21354 from crasbe/pr/native_term
buildsystem: Set `term` Goal to NOTPARALLEL
This commit is contained in:
commit
a84955c7ca
@ -870,6 +870,10 @@ TERMFLASHDEPS ?= $(filter flash flash-only,$(MAKECMDGOALS))
|
||||
TERMDEPS += $(TERMFLASHDEPS)
|
||||
termdeps: $(TERMDEPS)
|
||||
|
||||
# (At least) the native targets don't have `flash` as a dependency,
|
||||
# therefore the terminal will be called before the compilation is done.
|
||||
# Setting `term` to NOTPARALLEL makes sure it is not executed during compilation.
|
||||
.NOTPARALLEL: term
|
||||
term: $(TERMDEPS)
|
||||
$(call check_cmd,$(TERMPROG),Terminal program)
|
||||
${TERMENV} $(TERMPROG) $(TERMFLAGS) $(TERMTEE)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user