Skip to content

Commit 03b33ce

Browse files
committed
deps: escape Python strings correctly
Fixes: #50671
1 parent 5e250bd commit 03b33ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deps/openssl/openssl_common.gypi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
}, 'OS=="win"', {
2727
'defines': [
2828
## default of Win. See INSTALL in openssl repo.
29-
'OPENSSLDIR="C:\\\Program\ Files\\\Common\ Files\\\SSL"',
29+
'OPENSSLDIR="C:\\\\Program\\ Files\\\\Common\\ Files\\\\SSL"',
3030
'ENGINESDIR="NUL"',
3131
'OPENSSL_SYS_WIN32', 'WIN32_LEAN_AND_MEAN', 'L_ENDIAN',
3232
'_CRT_SECURE_NO_DEPRECATE', 'UNICODE', '_UNICODE',
@@ -73,4 +73,4 @@
7373
],
7474
}],
7575
]
76-
}
76+
}

0 commit comments

Comments
 (0)