From 784f6557280a6e92728730fb842c44b60dd30b15 Mon Sep 17 00:00:00 2001 From: Martin DeMello Date: Thu, 31 Oct 2024 18:01:39 -0700 Subject: [PATCH] Add cinderhooks to the python-3.12 makefile Summary: We patch the cpython sources to add a hook for cinder, but only include it in the buck build files. This adds `cinderhooks.o` to the makefile so that we can run `make regen-all` in our `python/3.12` directory. Reviewed By: DinoV Differential Revision: D65287613 fbshipit-source-id: 430575b54a554ffaf2b9adb44015de280775650f --- Makefile.pre.in | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.pre.in b/Makefile.pre.in index 38daae694ce..13acca3733a 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -376,6 +376,7 @@ PYTHON_OBJS= \ Python/ast_unparse.o \ Python/bltinmodule.o \ Python/ceval.o \ + Python/cinderhooks.o \ Python/codecs.o \ Python/compile.o \ Python/context.o \