mirror of https://github.com/ArduPilot/ardupilot
waf: rename config_header variable to config_hash
That's a better name. The other name would give the wrong idea that that variable would store a path to the header.
This commit is contained in:
parent
aaa8709194
commit
0e09d0b996
7
wscript
7
wscript
|
@ -247,10 +247,9 @@ def _write_version_header(tsk):
|
|||
|
||||
|
||||
def build(bld):
|
||||
config_header = Utils.h_file(bld.bldnode.make_node('ap_config.h').abspath())
|
||||
|
||||
bld.env.CCDEPS = config_header
|
||||
bld.env.CXXDEPS = config_header
|
||||
config_hash = Utils.h_file(bld.bldnode.make_node('ap_config.h').abspath())
|
||||
bld.env.CCDEPS = config_hash
|
||||
bld.env.CXXDEPS = config_hash
|
||||
|
||||
bld.post_mode = Build.POST_LAZY
|
||||
|
||||
|
|
Loading…
Reference in New Issue