From c0676f3f0f194eb0aa91f080a8ffea51b4645dae Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 2 Aug 2016 09:34:29 +0200 Subject: [PATCH 1/2] build: fix typo in non-essential source file name Depend on src/inspector_agent.h, src/inspector-agent.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 Reviewed-By: Evan Lucas --- node.gyp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node.gyp b/node.gyp index d192e28807cd20..1f7fe54880f4d2 100644 --- a/node.gyp +++ b/node.gyp @@ -316,7 +316,7 @@ 'src/inspector_agent.cc', 'src/inspector_socket.cc', 'src/inspector_socket.h', - 'src/inspector-agent.h', + 'src/inspector_agent.h', ], 'dependencies': [ 'deps/v8_inspector/third_party/v8_inspector/platform/' From 05c15a057f230f2ab338b7b81e59a2ce32dd8bd8 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 2 Aug 2016 09:38:23 +0200 Subject: [PATCH 2/2] 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 Reviewed-By: Evan Lucas --- deps/cares/cares.gyp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/cares/cares.gyp b/deps/cares/cares.gyp index 745e38e33d2d6b..158cef39b514a9 100644 --- a/deps/cares/cares.gyp +++ b/deps/cares/cares.gyp @@ -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',