From a1028d5e3ee18dbf135c744b16d3d55068f6efc1 Mon Sep 17 00:00:00 2001 From: Gibson Fahnestock Date: Wed, 22 Mar 2017 00:15:03 +0000 Subject: [PATCH] build: remove cares headers from tarball The bundled c-ares isn't very suitable for consumption by addons, isn't kept stable, and isn't exported on windows. PR-URL: https://github.com/nodejs/node/pull/10283 Refs: https://github.com/nodejs/node-gyp/pull/1055 Reviewed-By: Ben Noordhuis Reviewed-By: James M Snell Reviewed-By: Michael Dawson Reviewed-By: Colin Ihrig --- tools/install.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/install.py b/tools/install.py index d1100352c6a413..fdaf2b2e7a60b0 100755 --- a/tools/install.py +++ b/tools/install.py @@ -159,9 +159,6 @@ def headers(action): subdir_files('deps/v8/include', 'include/node/', action) - if 'false' == variables.get('node_shared_cares'): - subdir_files('deps/cares/include', 'include/node/', action) - if 'false' == variables.get('node_shared_libuv'): subdir_files('deps/uv/include', 'include/node/', action)