diff options
author | Joel Challis <git@zvecr.com> | 2020-05-04 07:19:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-03 23:19:51 -0700 |
commit | e17b55e33ad5b3dcefcf7b828ac99aeb2daeeae2 (patch) | |
tree | e6430a88e4ce4e73783f2a2f4fd4939885b1e402 /Makefile | |
parent | f31bf1b2025ece2d61cec10293cbd4e18b537eeb (diff) |
Fix conflicting types for 'tfp_printf' (#8269)
* Refactor to use mpaland/printf
* trim firmware size
* remove keymap changes
* run clang format
* Fixup after rebase
* fix up git-submodule command for printf
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 \ |