2023-12-04 05:55:08 -04:00
|
|
|
#!/usr/bin/env bash
|
2012-11-24 06:06:52 -04:00
|
|
|
|
|
|
|
set -e
|
2016-06-01 07:23:49 -03:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2012-11-24 06:06:52 -04:00
|
|
|
set -x
|
|
|
|
|
2016-06-01 07:23:49 -03:00
|
|
|
PY="$(dirname $0)/build_examples.py"
|
|
|
|
|
|
|
|
$PY $*
|