Skip to content

Commit

Permalink
[3.10] bpo-33393: Update config.guess and config.sub (GH-29781) (GH-2…
Browse files Browse the repository at this point in the history
…9782)

Co-authored-by: Christian Heimes <christian@python.org>
  • Loading branch information
tiran authored Nov 25, 2021
1 parent 52d10f6 commit 3f565f8
Show file tree
Hide file tree
Showing 4 changed files with 2,230 additions and 1,870 deletions.
6 changes: 6 additions & 0 deletions Makefile.pre.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Update ``config.guess`` to 2021-06-03 and ``config.sub`` to 2021-08-14.
``Makefile`` now has an ``update-config`` target to make updating more
convenient.
Loading

0 comments on commit 3f565f8

Please sign in to comment.