summaryrefslogtreecommitdiff
path: root/tools/install.py
diff options
context:
space:
mode:
authorJohan Bergström <bugs@bergstroem.nu>2014-12-03 18:28:40 +1100
committerRod Vagg <rod@vagg.org>2014-12-04 21:20:28 +1100
commit766d063e0578c0f7758c3a965c971763f43fec85 (patch)
tree4f3aa5f5cddc2b865291bd9283735e052c0c76f8 /tools/install.py
parent206389d411c7ca13d90d3104ce21fdc284123d96 (diff)
downloadnode-new-766d063e0578c0f7758c3a965c971763f43fec85.tar.gz
configure: remove shared cares build option
Bundled cares differs from upstream which will result in a compilation error when trying to used a shared cares. Fixes: https://github.com/joyent/node/pull/8786 PR-URL: https://github.com/iojs/io.js/pull/38 Reviewed-By: Fedor Indutny <fedor@indutny.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'tools/install.py')
-rwxr-xr-xtools/install.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/install.py b/tools/install.py
index 52c1109941..c99dc1579b 100755
--- a/tools/install.py
+++ b/tools/install.py
@@ -154,8 +154,7 @@ def files(action):
'src/smalloc.h',
], 'include/node/')
- if 'false' == variables.get('node_shared_cares'):
- subdir_files('deps/cares/include', 'include/node/', action)
+ subdir_files('deps/cares/include', 'include/node/', action)
if 'false' == variables.get('node_shared_libuv'):
subdir_files('deps/uv/include', 'include/node/', action)