You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
343 B
21 lines
343 B
#!/bin/bash |
|
|
|
set -e |
|
|
|
cat >&2 <<EOF |
|
This script is deprecated in favour of running waf with 'examples' as the main command |
|
|
|
cd \$ARDUPILOT_HOME |
|
./modules/waf/waf-light configure --board=linux |
|
./modules/waf/waf-light examples |
|
|
|
Sleeping for a few seconds to let you digest that. |
|
EOF |
|
|
|
sleep 4 |
|
|
|
set -x |
|
|
|
PY="$(dirname $0)/build_examples.py" |
|
|
|
$PY $*
|
|
|