Title: [290614] trunk/Tools
Revision
290614
Author
chris.r...@sony.com
Date
2022-02-28 13:48:59 -0800 (Mon, 28 Feb 2022)

Log Message

[Win] vswhere should search for Visual Studio Build tools
https://bugs.webkit.org/show_bug.cgi?id=237229

Reviewed by Ross Kirsling.

* Scripts/webkitdirs.pm:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (290613 => 290614)


--- trunk/Tools/ChangeLog	2022-02-28 21:19:56 UTC (rev 290613)
+++ trunk/Tools/ChangeLog	2022-02-28 21:48:59 UTC (rev 290614)
@@ -1,3 +1,12 @@
+2022-02-28  Christopher Reid  <chris.r...@sony.com>
+
+        [Win] vswhere should search for Visual Studio Build tools
+        https://bugs.webkit.org/show_bug.cgi?id=237229
+
+        Reviewed by Ross Kirsling.
+
+        * Scripts/webkitdirs.pm:
+
 2022-02-28  Angelos Oikonomopoulos  <ange...@igalia.com>
 
         [webkit-patch] Allow user to opt out of browser for viewing the diff

Modified: trunk/Tools/Scripts/webkitdirs.pm (290613 => 290614)


--- trunk/Tools/Scripts/webkitdirs.pm	2022-02-28 21:19:56 UTC (rev 290613)
+++ trunk/Tools/Scripts/webkitdirs.pm	2022-02-28 21:48:59 UTC (rev 290614)
@@ -774,7 +774,7 @@
 {
     my $vswhere = File::Spec->catdir(programFilesPathX86(), "Microsoft Visual Studio", "Installer", "vswhere.exe");
     return unless -e $vswhere;
-    open(my $handle, "-|", $vswhere, qw(-nologo -latest -requires Microsoft.Component.MSBuild -property installationPath)) || return;
+    open(my $handle, "-|", $vswhere, qw(-nologo -latest -requires Microsoft.Component.MSBuild -property installationPath -products *)) || return;
     my $vsWhereOut = <$handle>;
     $vsWhereOut =~ s/\r?\n//;
     return $vsWhereOut;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to