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

Merge branch 'this_is_why_we_need_automated_testing' into 'master'

Incorrect syntax for multi-line command

See merge request e3/e3-require!29
parents 55151941 d0537f4c
No related branches found
No related tags found
No related merge requests found
......@@ -450,10 +450,10 @@ debug::
# Loop over all architectures.
install build debug::
@+failed_builds=0; \
@+for ARCH in ${CROSS_COMPILER_TARGET_ARCHS}; do \
for ARCH in ${CROSS_COMPILER_TARGET_ARCHS}; do \
umask 002; echo MAKING ARCH $$ARCH; ${MAKE} -f ${USERMAKEFILE} T_A=$$ARCH $@ || ((failed_builds++)); \
done; \
@+((failed_builds == 0))
((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