1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

picolibc: Reset color in error message if picolibc is not available

This is a regression which was introduced in #16114, without resetting
the color the red color will be used for all following text written to
the terminal and will also cause the shell prompt etc. pp. to be colored
in red which is undesirable. This commit fixes this regression by using
the ANSI escape sequences to reset the color after the error message has
been written.
This commit is contained in:
Sören Tempel 2021-08-05 20:52:15 +02:00
parent 1b0152bd73
commit 6dc6433663

View File

@ -17,7 +17,7 @@ _missing-picolibc:
@$(Q)echo "picolibc was selected to be build but no picolibc.spec could be found"
@$(Q)echo "you might want to install "picolibc" for "$(TARGET_ARCH)""
@$(Q)echo "or add "FEATURES_BLACKLIST += picolibc" to Makefile)"
@$(COLOR_ECHO) "$(COLOR_RED)check your installation or build configuration."
@$(COLOR_ECHO) "$(COLOR_RED)check your installation or build configuration.$(COLOR_RESET)"
@$(Q)exit 1
ifeq (1,$(USE_PICOLIBC))