summaryrefslogtreecommitdiff
path: root/ci/ciimage
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz93@gmail.com>2023-10-03 11:43:28 -0400
committerEli Schwartz <eschwartz93@gmail.com>2023-10-04 02:03:03 -0400
commit7143a695fd0e62149eca62bd1fc00e8c92d80202 (patch)
treedd2ad94edcd93380e9b66797d3b2cd53ec09e245 /ci/ciimage
parent1f000de55ac96648c74775d2e3a49ae99e92d949 (diff)
downloadmeson-7143a695fd0e62149eca62bd1fc00e8c92d80202.tar.gz
CI: fix the fix for python actually being mildly useful
In commit 5c479d7a13a518c18ccb4dc3b6bdd7bfc2a9bdb5, we deleted bad stuff that makes python not work. But we missed the case where it is installed to lib64.
Diffstat (limited to 'ci/ciimage')
-rw-r--r--ci/ciimage/common.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/ciimage/common.sh b/ci/ciimage/common.sh
index 6209ef9a1..67d59978f 100644
--- a/ci/ciimage/common.sh
+++ b/ci/ciimage/common.sh
@@ -39,11 +39,11 @@ dub_fetch() {
}
install_minimal_python_packages() {
- rm -f /usr/lib/python3.*/EXTERNALLY-MANAGED
+ rm -f /usr/lib*/python3.*/EXTERNALLY-MANAGED
python3 -m pip install "${base_python_pkgs[@]}" $*
}
install_python_packages() {
- rm -f /usr/lib/python3.*/EXTERNALLY-MANAGED
+ rm -f /usr/lib*/python3.*/EXTERNALLY-MANAGED
python3 -m pip install "${base_python_pkgs[@]}" "${python_pkgs[@]}" $*
}