Skip to content

Commit bc71ae2

Browse files
authored
gh-113688: fix dtrace build on Solaris (#113814)
(the gcmodule -> gc refactoring broke it)
1 parent a9df076 commit bc71ae2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile.pre.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ LINK_PYTHON_OBJS=@LINK_PYTHON_OBJS@
547547
# On some systems, object files that reference DTrace probes need to be modified
548548
# in-place by dtrace(1).
549549
DTRACE_DEPS = \
550-
Python/ceval.o Python/import.o Python/sysmodule.o Modules/gcmodule.o
550+
Python/ceval.o Python/gc.o Python/import.o Python/sysmodule.o
551551

552552
##########################################################################
553553
# decimal's libmpdec
@@ -1648,8 +1648,8 @@ Include/pydtrace_probes.h: $(srcdir)/Include/pydtrace.d
16481648
16491649

16501650
Python/ceval.o: $(srcdir)/Include/pydtrace.h
1651+
Python/gc.o: $(srcdir)/Include/pydtrace.h
16511652
Python/import.o: $(srcdir)/Include/pydtrace.h
1652-
Modules/gcmodule.o: $(srcdir)/Include/pydtrace.h
16531653

16541654
Python/pydtrace.o: $(srcdir)/Include/pydtrace.d $(DTRACE_DEPS)
16551655
$(DTRACE) $(DFLAGS) -o $@ -G -s $< $(DTRACE_DEPS)

0 commit comments

Comments
 (0)