[Python-checkins] makefile: remove unused SGI_ABI variable (GH-29325) (GH-29368)

ambv webhook-mailer at python.org
Tue Nov 2 17:00:55 EDT 2021


https://github.com/python/cpython/commit/8d609b29c0f196ecf98f64c3f4b22237b561e6d7
commit: 8d609b29c0f196ecf98f64c3f4b22237b561e6d7
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: ambv <lukasz at langa.pl>
date: 2021-11-02T22:00:46+01:00
summary:

makefile: remove unused SGI_ABI variable (GH-29325) (GH-29368)

SGI_ABI support was removed in [1] but this variable was never removed
from the makefile. Currently, it is just a bad variable that does not
get replaced by the configure script.

[1] https://github.com/python/cpython/pull/3294

Signed-off-by: Filipe Laíns <lains at riseup.net>
(cherry picked from commit 38982ab13629a0802ea721a5917da0b98d0d5a0a)

Co-authored-by: Filipe Laíns <lains at riseup.net>

files:
M Makefile.pre.in

diff --git a/Makefile.pre.in b/Makefile.pre.in
index 790d974b9685a..673e6efbf1e4f 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -103,7 +103,6 @@ PY_CPPFLAGS=	$(BASECPPFLAGS) -I. -I$(srcdir)/Include $(CONFIGURE_CPPFLAGS) $(CPP
 PY_LDFLAGS=	$(CONFIGURE_LDFLAGS) $(LDFLAGS)
 PY_LDFLAGS_NODIST=$(CONFIGURE_LDFLAGS_NODIST) $(LDFLAGS_NODIST)
 NO_AS_NEEDED=	@NO_AS_NEEDED@
-SGI_ABI=	@SGI_ABI@
 CCSHARED=	@CCSHARED@
 # LINKFORSHARED are the flags passed to the $(CC) command that links
 # the python executable -- this is only needed for a few systems



More information about the Python-checkins mailing list