mirror of https://github.com/ArduPilot/ardupilot
Build: More changes as we move to WAF
The only example being built in build_all.sh was CPUInfo and that is really an APM tool. It will get built further down in when autotest.py calls build.Examples so we don't need to build it here. And changing the Replay build to just call make which really means it will invoke waf as that's what the makefile does.
This commit is contained in:
parent
c808ee2f49
commit
705f96dd3e
|
@ -47,19 +47,9 @@ for b in sitl; do
|
|||
done
|
||||
popd
|
||||
|
||||
echo "Testing build of examples"
|
||||
|
||||
examples="Tools/CPUInfo"
|
||||
for d in $examples; do
|
||||
pushd $d
|
||||
make clean
|
||||
make sitl -j4
|
||||
popd
|
||||
done
|
||||
|
||||
pushd Tools/Replay
|
||||
make clean
|
||||
make linux -j4
|
||||
make
|
||||
popd
|
||||
|
||||
test -n "$PX4_ROOT" && test -d "$PX4_ROOT" && {
|
||||
|
|
Loading…
Reference in New Issue