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:
Gustavo Jose de Sousa 2016-05-20 09:16:01 -03:00 committed by Lucas De Marchi
parent aaa8709194
commit 0e09d0b996
1 changed files with 3 additions and 4 deletions

View File

@ -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