https://github.com/python/cpython/commit/bc71ae2b97bb59b1796be056fb821d9abdee840b
commit: bc71ae2b97bb59b1796be056fb821d9abdee840b
branch: main
author: Jakub KulĂ­k <[email protected]>
committer: gpshead <[email protected]>
date: 2024-01-08T11:28:09-08:00
summary:

gh-113688: fix dtrace build on Solaris (#113814)

(the gcmodule -> gc refactoring broke it)

files:
M Makefile.pre.in

diff --git a/Makefile.pre.in b/Makefile.pre.in
index d3c43640fef5cd..abbd4b1b1fbd6c 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -547,7 +547,7 @@ LINK_PYTHON_OBJS=@LINK_PYTHON_OBJS@
 # On some systems, object files that reference DTrace probes need to be 
modified
 # in-place by dtrace(1).
 DTRACE_DEPS = \
-       Python/ceval.o Python/import.o Python/sysmodule.o Modules/gcmodule.o
+       Python/ceval.o Python/gc.o Python/import.o Python/sysmodule.o
 
 ##########################################################################
 # decimal's libmpdec
@@ -1648,8 +1648,8 @@ Include/pydtrace_probes.h: $(srcdir)/Include/pydtrace.d
        mv [email protected] $@
 
 Python/ceval.o: $(srcdir)/Include/pydtrace.h
+Python/gc.o: $(srcdir)/Include/pydtrace.h
 Python/import.o: $(srcdir)/Include/pydtrace.h
-Modules/gcmodule.o: $(srcdir)/Include/pydtrace.h
 
 Python/pydtrace.o: $(srcdir)/Include/pydtrace.d $(DTRACE_DEPS)
        $(DTRACE) $(DFLAGS) -o $@ -G -s $< $(DTRACE_DEPS)

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to