Skip to content

Commit b524934

Browse files
authored
[3.9] bpo-33393: Update config.guess and config.sub (GH-29781) (GH-29783)
Co-authored-by: Christian Heimes <[email protected]>
1 parent cd6d257 commit b524934

File tree

4 files changed

+2230
-1870
lines changed

4 files changed

+2230
-1870
lines changed

Makefile.pre.in

+6
Original file line numberDiff line numberDiff line change
@@ -1946,6 +1946,12 @@ funny:
19461946
patchcheck: @DEF_MAKE_RULE@
19471947
$(RUNSHARED) ./$(BUILDPYTHON) $(srcdir)/Tools/scripts/patchcheck.py
19481948

1949+
.PHONY: update-config
1950+
update-config:
1951+
curl -sL -o config.guess 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD'
1952+
curl -sL -o config.sub 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD'
1953+
chmod +x config.guess config.sub
1954+
19491955
# Dependencies
19501956

19511957
Python/thread.o: @THREADHEADERS@ $(srcdir)/Python/condvar.h
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Update ``config.guess`` to 2021-06-03 and ``config.sub`` to 2021-08-14.
2+
``Makefile`` now has an ``update-config`` target to make updating more
3+
convenient.

0 commit comments

Comments
 (0)