diff options
author | Jakub KulĂk <Kulikjak@gmail.com> | 2024-01-08 19:28:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-08 19:28:09 (GMT) |
commit | bc71ae2b97bb59b1796be056fb821d9abdee840b (patch) | |
tree | 69da72b661a9be7bc9ef6a4318c0091856aeee63 /Makefile.pre.in | |
parent | a9df076d7d5e113aab4dfd32118a14b62537a8a2 (diff) | |
download | cpython-bc71ae2b97bb59b1796be056fb821d9abdee840b.zip cpython-bc71ae2b97bb59b1796be056fb821d9abdee840b.tar.gz cpython-bc71ae2b97bb59b1796be056fb821d9abdee840b.tar.bz2 |
gh-113688: fix dtrace build on Solaris (#113814)
(the gcmodule -> gc refactoring broke it)
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r-- | Makefile.pre.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index d3c4364..abbd4b1 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 $@.tmp $@ 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) |