diff options
author | Shigeki Ohtsu <ohtsu@ohtsu.org> | 2018-03-14 11:25:48 +0900 |
---|---|---|
committer | Shigeki Ohtsu <ohtsu@ohtsu.org> | 2018-04-10 06:45:45 +0900 |
commit | 2b235830fb8bf387cce0449105877c30f6e5d44f (patch) | |
tree | 197428f928ec5afcf1dcb42465ff0758c69bdb74 /tools | |
parent | 425c5ca27d25b35091783262ea21baef1f742579 (diff) | |
download | node-new-2b235830fb8bf387cce0449105877c30f6e5d44f.tar.gz |
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 <jasnell@gmail.com>
Reviewed-By: Rod Vagg <rod@vagg.org>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/install.py | 2 |
1 files changed, 1 insertions, 1 deletions
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([ |