mirror of https://github.com/ArduPilot/ardupilot
waf: fix environment boolean values
It is more natural to use `env.FOO = True` then `env.foo = [True]`.
This commit is contained in:
parent
79b724dce8
commit
86c1c6da5c
|
@ -213,7 +213,7 @@ class bebop(linux):
|
|||
env.DEFINES.update(
|
||||
CONFIG_HAL_BOARD_SUBTYPE = 'HAL_BOARD_SUBTYPE_LINUX_BEBOP',
|
||||
)
|
||||
env.STATIC_LINKING = [True]
|
||||
env.STATIC_LINKING = True
|
||||
|
||||
class raspilot(linux):
|
||||
def configure_env(self, env):
|
||||
|
|
Loading…
Reference in New Issue