Skip to content

Commit

Permalink
tools: fix install source path for openssl headers
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
obastemur authored and Shigeki Ohtsu committed Apr 6, 2015
1 parent 644ece1 commit ec7fbf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ def files(action):
subdir_files('deps/uv/include', 'include/node/', action)

if 'false' == variables.get('node_shared_openssl'):
subdir_files('deps/openssl/openssl/include/openssl', 'include/node/openssl/', action)
action(['deps/openssl/config/opensslconf.h'], 'include/node/openssl/')
subdir_files('deps/openssl/include/openssl', 'include/node/openssl/', action)

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

0 comments on commit ec7fbf2

Please sign in to comment.