https://bugs.webkit.org/show_bug.cgi?id=153106
Patch by Konstantin Tokarev <annulen@yandex.ru> on 2016-01-15
Reviewed by Alex Christensen.
* Scripts/webkitdirs.pm:
(determineArchitecture):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@195163
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2016-01-15 Konstantin Tokarev <annulen@yandex.ru>
+
+ [webkitdirs] Avoid list form of open because it broke WinCairo
+ https://bugs.webkit.org/show_bug.cgi?id=153106
+
+ Reviewed by Alex Christensen.
+
+ * Scripts/webkitdirs.pm:
+ (determineArchitecture):
+
2016-01-15 Simon Fraser <simon.fraser@apple.com>
Add kdebug_trace signposts for a few WebCore operations
}
} elsif (isCMakeBuild()) {
my $host_processor = "";
- if (open my $cmake_sysinfo, "-|", "cmake", "--system-information") {
+ if (open my $cmake_sysinfo, "cmake --system-information |") {
while (<$cmake_sysinfo>) {
next unless index($_, 'CMAKE_SYSTEM_PROCESSOR') == 0;
if (/^CMAKE_SYSTEM_PROCESSOR \"([^"]+)\"/) {