PX4: fixed px4io build in build_binaries.sh

This commit is contained in:
Andrew Tridgell 2013-05-10 06:43:29 +10:00
parent 1248a49284
commit ad9d3360da
1 changed files with 7 additions and 5 deletions

View File

@ -178,12 +178,14 @@ build_px4io() {
checkout PX4IO $tag || return checkout PX4IO $tag || return
ddir=$binaries/PX4IO/$hdate/PX4IO ddir=$binaries/PX4IO/$hdate/PX4IO
skip_build $tag $ddir || { skip_build $tag $ddir || {
make clean && popd
make configure_px4io && pushd ArduPlane
make && make px4-clean &&
copyit px4io.bin $ddir $tag && make px4-io &&
make configure_px4fmu copyit px4io.bin $ddir $tag
popd
} }
pushd $PX4_ROOT
git checkout master git checkout master
popd popd
} }