mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-30 05:31:54 +08:00
440075a9fc
* update to 14.1 * adjust patches * add lz4 feature on !windows * version stuff * [skip actions] patch configure.ac and run autoreconf * fix some stuff * [skip actions] more details * [libpq] Add license filed to vcpkg json * [libpq] Adjust tcl version to 90g 90s and 90sg * [libpq] fail early from unsupported features * [libpq] lake xslt dependent from xml * [libpq] Update version database * [libpq] quote static * [libpq] Update Version Database Co-authored-by: Alexander Neumann <Alexander.Neumann@hamburg.de>
14 lines
490 B
Diff
14 lines
490 B
Diff
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm
|
|
index 51711c2bf..d33fdc3b0 100644
|
|
--- a/src/tools/msvc/Solution.pm
|
|
+++ b/src/tools/msvc/Solution.pm
|
|
@@ -129,7 +129,7 @@ sub GetOpenSSLVersion
|
|
# openssl.exe is in the specified directory.
|
|
# Quote the .exe name in case it has spaces
|
|
my $opensslcmd =
|
|
- qq("$self->{options}->{openssl}\\bin\\openssl.exe" version 2>&1);
|
|
+ qq("openssl.exe" version 2>&1);
|
|
my $sslout = `$opensslcmd`;
|
|
|
|
$? >> 8 == 0
|