summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorSeth Michael Larson <sethmichaellarson@gmail.com>2023-12-04 16:02:45 (GMT)
committerGitHub <noreply@github.com>2023-12-04 16:02:45 (GMT)
commit76c9c9cedf30c92f52c33852efeefdb232db4ac0 (patch)
treed2ee21834e78f04fbef1265867ee4501b58b8884 /Makefile.pre.in
parent798d43722b60fc1372848827944904590d26ed75 (diff)
downloadcpython-76c9c9cedf30c92f52c33852efeefdb232db4ac0.zip
cpython-76c9c9cedf30c92f52c33852efeefdb232db4ac0.tar.gz
cpython-76c9c9cedf30c92f52c33852efeefdb232db4ac0.tar.bz2
[3.11] GH-112160: Pin to manifest of quay.io/tiran/cpython_autoconf (#112161)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 21aecd4..c61b093 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -2405,7 +2405,9 @@ regen-configure:
@if command -v podman >/dev/null; then RUNTIME="podman"; else RUNTIME="docker"; fi; \
if ! command -v $$RUNTIME; then echo "$@ needs either Podman or Docker container runtime." >&2; exit 1; fi; \
if command -v selinuxenabled >/dev/null && selinuxenabled; then OPT=":Z"; fi; \
- CMD="$$RUNTIME run --rm --pull=always -v $(abs_srcdir):/src$$OPT quay.io/tiran/cpython_autoconf:269"; \
+ # Manifest corresponds with tag '269' \
+ CPYTHON_AUTOCONF_MANIFEST="sha256:f370fee95eefa3d57b00488bce4911635411fa83e2d293ced8cf8a3674ead939" \
+ CMD="$$RUNTIME run --rm --pull=missing -v $(abs_srcdir):/src$$OPT quay.io/tiran/cpython_autoconf@$$CPYTHON_AUTOCONF_MANIFEST"; \
echo $$CMD; \
$$CMD || exit $?