From 2b235830fb8bf387cce0449105877c30f6e5d44f Mon Sep 17 00:00:00 2001 From: Shigeki Ohtsu Date: Wed, 14 Mar 2018 11:25:48 +0900 Subject: tools: install all header files OpenSSL-1.1.0 After upgrading OpenSSL-1.1.0, header files depends on architectures were changed. This fixes to copy all `deps/openssl/config/*.h' into the install directory. Fixes: https://github.com/nodejs/node/issues/4270 PR-URL: https://github.com/nodejs/node/pull/19794 Reviewed-By: James M Snell Reviewed-By: Rod Vagg Reviewed-By: Michael Dawson --- tools/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/install.py b/tools/install.py index be2bab5463..2aeed773bb 100755 --- a/tools/install.py +++ b/tools/install.py @@ -183,7 +183,7 @@ def headers(action): 'false' == variables.get('node_shared_openssl'): subdir_files('deps/openssl/openssl/include/openssl', 'include/node/openssl/', action) subdir_files('deps/openssl/config/archs', 'include/node/openssl/archs', action) - action(['deps/openssl/config/opensslconf.h'], 'include/node/openssl/') + subdir_files('deps/openssl/config', 'include/node/openssl', action) if 'false' == variables.get('node_shared_zlib'): action([ -- cgit v1.2.1