mirror of https://github.com/ArduPilot/ardupilot
build: add waf wrapper
Simple wrapper to be extended later so people don't have to type the huge "./modules/waf/waf-light" command. It has a very primitive way to try to checkout waf submodule if it isn't there.
This commit is contained in:
parent
5fd3c79202
commit
97cb766c0f
|
@ -0,0 +1,22 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
|
||||||
|
from __future__ import print_function
|
||||||
|
import os
|
||||||
|
import os.path as p
|
||||||
|
import sys
|
||||||
|
|
||||||
|
d = p.dirname(p.realpath(__file__))
|
||||||
|
try:
|
||||||
|
os.execv(os.path.join(d, 'modules/waf/waf-light'), sys.argv)
|
||||||
|
except OSError:
|
||||||
|
print('Missing waf submodule. Trying to get it')
|
||||||
|
|
||||||
|
from subprocess import check_call, CalledProcessError
|
||||||
|
|
||||||
|
try:
|
||||||
|
check_call(['git', 'submodule', 'update', '--init', 'modules/waf'])
|
||||||
|
except CalledProcessError:
|
||||||
|
print('Could not update submodule', file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
|
|
||||||
|
print('Submodules OK, try running again')
|
Loading…
Reference in New Issue