Skip to content

Commit

Permalink
Makefile: Use printf instead of echo -n
Browse files Browse the repository at this point in the history
On MacOS `echo -n` is not working.

Change-Id: I96bb6c60e74133bbc86d5069cb076ee43f4bca83
Signed-off-by: Thomas Heijligen <[email protected]>
Reviewed-on: https://review.coreboot.org/c/flashrom/+/74522
Reviewed-by: Paul Menzel <[email protected]>
Reviewed-by: Anastasia Klimchuk <[email protected]>
Tested-by: build bot (Jenkins) <[email protected]>
  • Loading branch information
heijligen authored and Anastasia Klimchuk committed May 6, 2023
1 parent 1776bb4 commit 70a3817
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 70a3817

Please sign in to comment.