From 9d19dfbfdb2253e0bf42b55c7c1bbd618f40bf3c Mon Sep 17 00:00:00 2001 From: Oguz Bastemur Date: Thu, 26 Mar 2015 00:06:28 +0100 Subject: [PATCH] install: fix source path for openssl headers PR: #14089 PR-URL: https://github.com/joyent/node/pull/14089 Reviewed-By: Trevor Norris Reviewed-By: James M Snell Reviewed-By: Julien Gilli --- tools/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/install.py b/tools/install.py index 25bd3493d4fa8f..9419fa1b187ce8 100755 --- a/tools/install.py +++ b/tools/install.py @@ -157,7 +157,7 @@ def files(action): if 'false' == variables.get('node_shared_openssl'): action(['deps/openssl/config/opensslconf.h'], 'include/node/openssl/') - subdir_files('deps/openssl/include/openssl', 'include/node/openssl/', action) + subdir_files('deps/openssl/openssl/include/openssl', 'include/node/openssl/', action) if 'false' == variables.get('node_shared_v8'): subdir_files('deps/v8/include', 'include/node/', action)