summaryrefslogtreecommitdiff
path: root/deps/openssl
diff options
context:
space:
mode:
authorShigeki Ohtsu <ohtsu@ohtsu.org>2019-09-06 01:46:57 +0900
committerRich Trott <rtrott@gmail.com>2019-12-05 21:38:39 -0800
commiteea5bb4160517f84e9673e685f0b2494214b95de (patch)
tree5fc943d350d54e0db0d6e023949f4a99b6e32b61 /deps/openssl
parent418dd68b611cce7e916dae82c75cb3d63b3c43a6 (diff)
downloadandroid-node-v8-eea5bb4160517f84e9673e685f0b2494214b95de.tar.gz
android-node-v8-eea5bb4160517f84e9673e685f0b2494214b95de.tar.bz2
android-node-v8-eea5bb4160517f84e9673e685f0b2494214b95de.zip
deps: fix OPENSSLDIR on Windows
Backslashes and spaces are need to be escaped to define OPENSSLDIR to "C:\Program Files\Common Files\SSL". PR-URL: https://github.com/nodejs/node/pull/29456 Refs: https://github.com/nodejs/node/pull/29455 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'deps/openssl')
-rw-r--r--deps/openssl/openssl_common.gypi2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/openssl/openssl_common.gypi b/deps/openssl/openssl_common.gypi
index 67640a6325..93b87064b3 100644
--- a/deps/openssl/openssl_common.gypi
+++ b/deps/openssl/openssl_common.gypi
@@ -24,7 +24,7 @@
}, 'OS=="win"', {
'defines': [
## default of Win. See INSTALL in openssl repo.
- 'OPENSSLDIR="C:\Program Files\Common Files\SSL"',
+ 'OPENSSLDIR="C:\\\Program\ Files\\\Common\ Files\\\SSL"',
'ENGINESDIR="NUL"',
'OPENSSL_SYS_WIN32', 'WIN32_LEAN_AND_MEAN', 'L_ENDIAN',
'_CRT_SECURE_NO_DEPRECATE', 'UNICODE', '_UNICODE',