mirror of https://github.com/nodejs/node.git
build: fix dependency on missing header file
Depend on include/ares_rules.h, src/ares_rules.h does not exist. The typo didn't break the build but it made some of the gyp-based tooling complain. PR-URL: https://github.com/nodejs/node/pull/7945 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com>
This commit is contained in:
parent
c0676f3f0f
commit
05c15a057f
|
@ -37,6 +37,7 @@
|
|||
'sources': [
|
||||
'common.gypi',
|
||||
'include/ares.h',
|
||||
'include/ares_rules.h',
|
||||
'include/ares_version.h',
|
||||
'include/nameser.h',
|
||||
'src/ares_cancel.c',
|
||||
|
@ -83,7 +84,6 @@
|
|||
'src/ares_process.c',
|
||||
'src/ares_query.c',
|
||||
'src/ares__read_line.c',
|
||||
'src/ares_rules.h',
|
||||
'src/ares_search.c',
|
||||
'src/ares_send.c',
|
||||
'src/ares_setup.h',
|
||||
|
|
Loading…
Reference in New Issue