Skip to content

Commit 2b23583

Browse files
committed
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: nodejs#4270 PR-URL: nodejs#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>
1 parent 425c5ca commit 2b23583

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/install.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def headers(action):
183183
'false' == variables.get('node_shared_openssl'):
184184
subdir_files('deps/openssl/openssl/include/openssl', 'include/node/openssl/', action)
185185
subdir_files('deps/openssl/config/archs', 'include/node/openssl/archs', action)
186-
action(['deps/openssl/config/opensslconf.h'], 'include/node/openssl/')
186+
subdir_files('deps/openssl/config', 'include/node/openssl', action)
187187

188188
if 'false' == variables.get('node_shared_zlib'):
189189
action([

0 commit comments

Comments
 (0)