Skip to content

Commit ec7fbf2

Browse files
obastemurShigeki Ohtsu
authored and
Shigeki Ohtsu
committed
tools: fix install source path for openssl headers
This part is broken for a very long time. We noticed the problem while using jxcore native interface with embedded openssl. I've also sent a pull request to node.js repo. The problem may affect a native addon using builtin openssl. `opensslconf.h` is overwritten with `deps/openssl/conf/opensslconf.h` PR-URL: #1354 Reviewed-By: Shigeki Ohtsu <[email protected]>
1 parent 644ece1 commit ec7fbf2

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
@@ -173,8 +173,8 @@ def files(action):
173173
subdir_files('deps/uv/include', 'include/node/', action)
174174

175175
if 'false' == variables.get('node_shared_openssl'):
176+
subdir_files('deps/openssl/openssl/include/openssl', 'include/node/openssl/', action)
176177
action(['deps/openssl/config/opensslconf.h'], 'include/node/openssl/')
177-
subdir_files('deps/openssl/include/openssl', 'include/node/openssl/', action)
178178

179179
if 'false' == variables.get('node_shared_v8'):
180180
subdir_files('deps/v8/include', 'include/node/', action)

0 commit comments

Comments
 (0)