From 365da00a3cfa17398e900cf91a4b3ff5fa81c06a Mon Sep 17 00:00:00 2001 From: TallTechDude Date: Sat, 23 Jul 2022 11:43:52 +0000 Subject: [PATCH] fix: still run normal build for OpenXR809 to check status --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4b62158d3..9a8f2f020 100644 --- a/Makefile +++ b/Makefile @@ -80,7 +80,9 @@ sdk/OpenXR809/tools/gcc-arm-none-eabi-4_9-2015q2: # Retry OpenXR809 a few times to account for calibration file issues RETRY = 3 OpenXR809: - for i in `seq 1 ${RETRY}`; do ($(MAKE) -k build-XR809; echo Finished attempt $$i/${RETRY}); done + @for i in `seq 1 ${RETRY}`; do ($(MAKE) -k build-XR809; echo Prebuild attempt $$i/${RETRY}); done + @echo Running build final time to check output + $(MAKE) build-XR809; build-XR809: submodules sdk/OpenXR809/project/oxr_sharedApp/shared sdk/OpenXR809/tools/gcc-arm-none-eabi-4_9-2015q2 $(MAKE) -C sdk/OpenXR809/src CC_DIR=$(PWD)/sdk/OpenXR809/tools/gcc-arm-none-eabi-4_9-2015q2/bin