From 4028669531bcd30d6082bf0dfdb8d73ddb0717c6 Mon Sep 17 00:00:00 2001 From: Oguz Bastemur Date: Mon, 6 Apr 2015 09:57:39 +0200 Subject: [PATCH] install: make sure opensslconf.h is overwritten 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 9419fa1b187ce8..c8316b92ca1548 100755 --- a/tools/install.py +++ b/tools/install.py @@ -156,8 +156,8 @@ def files(action): subdir_files('deps/uv/include', 'include/node/', action) if 'false' == variables.get('node_shared_openssl'): - action(['deps/openssl/config/opensslconf.h'], 'include/node/openssl/') subdir_files('deps/openssl/openssl/include/openssl', 'include/node/openssl/', action) + action(['deps/openssl/config/opensslconf.h'], 'include/node/openssl/') if 'false' == variables.get('node_shared_v8'): subdir_files('deps/v8/include', 'include/node/', action)