diff options
author | Christian Heimes <christian@python.org> | 2021-11-25 19:55:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-25 19:55:29 (GMT) |
commit | dfcc6ff36f8bedae420fe228312527ec3937c973 (patch) | |
tree | b4a6ddb07c3958a00cb651069501909b46928567 /Makefile.pre.in | |
parent | e0f8a3e9b96bbc2597f61be96993ef0c768a19fe (diff) | |
download | cpython-dfcc6ff36f8bedae420fe228312527ec3937c973.zip cpython-dfcc6ff36f8bedae420fe228312527ec3937c973.tar.gz cpython-dfcc6ff36f8bedae420fe228312527ec3937c973.tar.bz2 |
bpo-33393: Update config.guess and config.sub (GH-29781)
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 bb62475..be9f68d 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -2383,6 +2383,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 |