Skip to content

Commit

Permalink
REGRESSION(267608@main): [Win] build-webkit is failing with "'python3…
Browse files Browse the repository at this point in the history
…' is not recognized as an internal or external command"

https://bugs.webkit.org/show_bug.cgi?id=261183

Reviewed by Ross Kirsling.

Windows Python 3 is python.exe, not python3.exe.

* Tools/Scripts/build-webkit:
Use python to execute update-webkit-wincairo-libs.py instead of python3.

Canonical link: https://commits.webkit.org/267662@main
  • Loading branch information
fujii committed Sep 6, 2023
1 parent 5d4cdbe commit fc2d94a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/Scripts/build-webkit
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ if (isAppleCocoaWebKit()) {
}

} elsif (isWinCairo() && !$skipLibraryUpdate) {
(system("python3 Tools/Scripts/update-webkit-wincairo-libs.py") == 0) or die;
(system("python Tools/Scripts/update-webkit-wincairo-libs.py") == 0) or die;
}

# If asked to build just the WebKit project, overwrite the projects
Expand Down

0 comments on commit fc2d94a

Please sign in to comment.