mirror of https://github.com/ArduPilot/ardupilot
waf: move --check-verbose option declaration
We move it to the correct "scope", that is, ardupilotwaf.py, where it's really used.
This commit is contained in:
parent
8c4d4f3f2a
commit
662e45fda2
|
@ -316,6 +316,11 @@ def options(opt):
|
|||
'examples. The special group "all" selects all programs.',
|
||||
)
|
||||
|
||||
g = opt.ap_groups['check']
|
||||
g.add_option('--check-verbose',
|
||||
action='store_true',
|
||||
help='Output all test programs')
|
||||
|
||||
def build(bld):
|
||||
global LAST_IDX
|
||||
# FIXME: This is done to prevent same task generators being created with
|
||||
|
|
5
wscript
5
wscript
|
@ -57,11 +57,6 @@ def options(opt):
|
|||
default='sitl',
|
||||
help='Target board to build, choices are %s' % boards_names)
|
||||
|
||||
g = opt.ap_groups['check']
|
||||
g.add_option('--check-verbose',
|
||||
action='store_true',
|
||||
help='Output all test programs')
|
||||
|
||||
g.add_option('--no-submodule-update',
|
||||
dest='submodule_update',
|
||||
action='store_false',
|
||||
|
|
Loading…
Reference in New Issue