From d292ffe957374b736e49abf3d701087f272fa59f Mon Sep 17 00:00:00 2001 From: zvecr Date: Fri, 6 Mar 2020 12:08:47 +0000 Subject: [PATCH] fix up git-submodule command for printf --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 9478c14f8c2a..cc3bde6b1f0f 100644 --- a/Makefile +++ b/Makefile @@ -567,6 +567,7 @@ ifndef SKIP_GIT if [ ! -e lib/chibios-contrib ]; then git submodule sync lib/chibios-contrib && git submodule update --depth 50 --init lib/chibios-contrib; fi if [ ! -e lib/ugfx ]; then git submodule sync lib/ugfx && git submodule update --depth 50 --init lib/ugfx; fi if [ ! -e lib/lufa ]; then git submodule sync lib/lufa && git submodule update --depth 50 --init lib/lufa; fi + if [ ! -e lib/printf ]; then git submodule sync lib/printf && git submodule update --depth 50 --init lib/printf; fi git submodule status --recursive 2>/dev/null | \ while IFS= read -r x; do \ case "$$x" in \