1
0
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:
Marian Buschsieweke 2025-04-03 20:12:17 +00:00 committed by GitHub
commit a84955c7ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)