mirror of https://github.com/ArduPilot/ardupilot
waf: use abspath for EXTRA_HWDEF
this allows auto-reconfigure
This commit is contained in:
parent
d6088539b7
commit
cc5d368a98
2
wscript
2
wscript
|
@ -314,6 +314,8 @@ def configure(cfg):
|
||||||
cfg.env.ENABLE_STATS = cfg.options.enable_stats
|
cfg.env.ENABLE_STATS = cfg.options.enable_stats
|
||||||
|
|
||||||
cfg.env.HWDEF_EXTRA = cfg.options.extra_hwdef
|
cfg.env.HWDEF_EXTRA = cfg.options.extra_hwdef
|
||||||
|
if cfg.env.HWDEF_EXTRA:
|
||||||
|
cfg.env.HWDEF_EXTRA = os.path.abspath(cfg.env.HWDEF_EXTRA)
|
||||||
|
|
||||||
cfg.env.OPTIONS = cfg.options.__dict__
|
cfg.env.OPTIONS = cfg.options.__dict__
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue