Skip to content

Commit 0ad7970

Browse files
shigekiBethGriggs
authored andcommittedJun 2, 2020
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: #29456 Refs: #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>
1 parent bd78c6e commit 0ad7970

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎deps/openssl/openssl_common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
}, 'OS=="win"', {
2525
'defines': [
2626
## default of Win. See INSTALL in openssl repo.
27-
'OPENSSLDIR="C:\Program Files\Common Files\SSL"',
27+
'OPENSSLDIR="C:\\\Program\ Files\\\Common\ Files\\\SSL"',
2828
'ENGINESDIR="NUL"',
2929
'OPENSSL_SYS_WIN32', 'WIN32_LEAN_AND_MEAN', 'L_ENDIAN',
3030
'_CRT_SECURE_NO_DEPRECATE', 'UNICODE', '_UNICODE',

0 commit comments

Comments
 (0)
Please sign in to comment.