Skip to content

Commit 4588606

Browse files
shigekitargos
authored andcommitted
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 <[email protected]> Reviewed-By: Sam Roberts <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent 0cb7720 commit 4588606

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)