Skip to content
Snippets Groups Projects
Commit ca8b5d50 authored by Simon Rose's avatar Simon Rose
Browse files

E3INPUT-88: Fix silent fail error

parent 019825ca
No related branches found
No related tags found
No related merge requests found
......@@ -452,9 +452,11 @@ debug::
# Loop over all architectures.
install build debug::
@+failed_builds=0; \
@+for ARCH in ${CROSS_COMPILER_TARGET_ARCHS}; do \
umask 002; echo MAKING ARCH $$ARCH; ${MAKE} -f ${USERMAKEFILE} T_A=$$ARCH $@; \
done
umask 002; echo MAKING ARCH $$ARCH; ${MAKE} -f ${USERMAKEFILE} T_A=$$ARCH $@ || ((failed_builds++)); \
done; \
@+((failed_builds == 0))
else # T_A
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment