1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-04-26 22:52:34 +02:00

Makefile: Use printf instead of echo -n

On MacOS `echo -n` is not working.

Change-Id: I96bb6c60e74133bbc86d5069cb076ee43f4bca83
Signed-off-by: Thomas Heijligen <thomas.heijligen@secunet.com>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/74522
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Reviewed-by: Anastasia Klimchuk <aklm@chromium.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Thomas Heijligen 2023-04-19 16:10:24 +02:00 committed by Anastasia Klimchuk
parent 1776bb46ba
commit 70a38170b9

View File

@ -965,7 +965,7 @@ endif
config:
@echo Building flashrom version $(VERSION)
@echo -n "C compiler found: "
@printf "C compiler found: "
@if [ $(CC_WORKING) = yes ]; \
then $(CC) --version 2>/dev/null | head -1; \
else echo no; echo Aborting.; exit 1; fi