diff options
author | Christian Heimes <christian@python.org> | 2021-11-25 21:52:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-25 21:52:02 (GMT) |
commit | 3f565f8edf84cfe8fa3e9cbf5da7c5911acaa6f9 (patch) | |
tree | f956b66e0e70c5ab0192bb2acf953d5252d462b1 /Makefile.pre.in | |
parent | 52d10f6485a168141e7a50d68f9a9566fdd8379d (diff) | |
download | cpython-3f565f8edf84cfe8fa3e9cbf5da7c5911acaa6f9.zip cpython-3f565f8edf84cfe8fa3e9cbf5da7c5911acaa6f9.tar.gz cpython-3f565f8edf84cfe8fa3e9cbf5da7c5911acaa6f9.tar.bz2 |
[3.10] bpo-33393: Update config.guess and config.sub (GH-29781) (GH-29782)
Co-authored-by: Christian Heimes <christian@python.org>
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 8601422..ee85f35 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -2002,6 +2002,12 @@ patchcheck: @DEF_MAKE_RULE@ check-limited-abi: all $(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/stable_abi.py --all $(srcdir)/Misc/stable_abi.txt +.PHONY: update-config +update-config: + curl -sL -o config.guess 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD' + curl -sL -o config.sub 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD' + chmod +x config.guess config.sub + # Dependencies Python/thread.o: @THREADHEADERS@ $(srcdir)/Python/condvar.h |