From ccfefac2fe83c03c15152d939afb7649eb91b730 Mon Sep 17 00:00:00 2001 From: Grant Morphett Date: Mon, 31 Aug 2015 18:36:22 +1000 Subject: [PATCH] build_all: Remove the all target as it just builds SITL. --- Tools/scripts/build_all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/scripts/build_all.sh b/Tools/scripts/build_all.sh index 0a41263671..d0fa9a0dee 100755 --- a/Tools/scripts/build_all.sh +++ b/Tools/scripts/build_all.sh @@ -10,7 +10,7 @@ set -x echo "Testing ArduPlane build" pushd ArduPlane -for b in all sitl linux; do +for b in sitl linux; do pwd make clean make $b -j4 @@ -28,7 +28,7 @@ popd echo "Testing APMRover build" pushd APMrover2 -for b in all sitl linux; do +for b in sitl linux; do pwd make clean make $b -j4