diff options
author | Martin Roth <gaumless@gmail.com> | 2022-06-22 18:35:58 -0600 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2022-07-06 00:33:03 +0000 |
commit | a6710d01d40236c305aa2f3a764b562c12bf964c (patch) | |
tree | 5f74e36a55fc0d7f28503e76a27a893273275626 /Makefile.inc | |
parent | 0a18d64d00a9fcfd096c14f28e7b4d62bca0a829 (diff) |
Makefile.inc: Notify about updating submodules
There is no longer any information printed when updating submodules, so
on the initial build, this can lead to a long delay without explaining
what's going on.
Just add an information line that the submodules are being updated so
that the user can see what's happening.
Signed-off-by: Martin Roth <gaumless@gmail.com>
Change-Id: I987e50b99e39b976bc8367525549153e1eba69cd
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65322
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
Diffstat (limited to 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.inc b/Makefile.inc index 91c32ffe1b..e76d890f69 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -191,6 +191,7 @@ ifeq ($(CONFIG_COVERAGE),y) ramstage-c-ccopts += -fprofile-arcs -ftest-coverage endif ifneq ($(UPDATED_SUBMODULES),1) +$(info Updating git submodules.) # try to fetch non-optional submodules if the source is under git forgetthis:=$(if $(GIT),$(shell git submodule update --init $(quiet_errors))) # Checkout Cmocka repository |