mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
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.',
|
'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):
|
def build(bld):
|
||||||
global LAST_IDX
|
global LAST_IDX
|
||||||
# FIXME: This is done to prevent same task generators being created with
|
# 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',
|
default='sitl',
|
||||||
help='Target board to build, choices are %s' % boards_names)
|
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',
|
g.add_option('--no-submodule-update',
|
||||||
dest='submodule_update',
|
dest='submodule_update',
|
||||||
action='store_false',
|
action='store_false',
|
||||||
|
Loading…
Reference in New Issue
Block a user