aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2016-06-13 13:17:31 -0500
committerRob Herring <robh@kernel.org>2016-06-13 13:18:01 -0500
commit78d8021b699b04e64c6fd39507cd9409c913d53d (patch)
tree9d1c7af61bb6480aebbba103db3917febae3da83
parent0774a23042341eeecf6e8c55e3cac537eb6c5173 (diff)
robher-aosp: fix make error handling
() creates a sub shell and doesn't work. Signed-off-by: Rob Herring <robh@kernel.org>
-rw-r--r--robher-aosp.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/robher-aosp.yaml b/robher-aosp.yaml
index 6a9adf0cde..409b382ff9 100644
--- a/robher-aosp.yaml
+++ b/robher-aosp.yaml
@@ -93,7 +93,7 @@
source build/envsetup.sh
for arch in arm64 x86_64; do
lunch linaro_${arch}-userdebug
- make -k -j8 gallium_dri i915_dri i965_dri libGLES_mesa gralloc.drm || (true; failed=1)
+ make -k -j8 gallium_dri i915_dri i965_dri libGLES_mesa gralloc.drm || { true; failed=1; }
done
###### Don't care about artifacts for now ######