summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2024-11-06 01:34:41 +0530
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2024-11-06 07:19:47 +0000
commit4c117c07f4e35d5a3a3d1819c278b1db4bc6ada2 (patch)
treeda7e8867cff6a353b82f3ece2e7871424e61af9e
parent1203e9819d89d92902ce6e62527676c3e860152d (diff)
cerbero: Install setuptools when bootstrapping on Windows
Recent Python versions have stopped shipping setuptools Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1625>
-rw-r--r--tools/bootstrap-windows.ps11
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/bootstrap-windows.ps1 b/tools/bootstrap-windows.ps1
index 83ec7819..e32ad8c8 100644
--- a/tools/bootstrap-windows.ps1
+++ b/tools/bootstrap-windows.ps1
@@ -129,6 +129,7 @@ if (!(Is-Newer 'py' $python_req)) {
Write-Host "Python >= $python_req not found, installing..."
choco install -y python3
}
+python -m pip install setuptools
if (!(Is-Newer "$env:WIX\bin\light" $wix_req)) {
Write-Host "WiX >= $wix_req not found, installing..."