From 215a982c1469df214b2beda2db5ed8d562040738 Mon Sep 17 00:00:00 2001 From: iabdalkader Date: Sun, 14 Jan 2024 20:22:18 +0200 Subject: [PATCH] py/py.mk: Remove extra build dir created for frozen_content. This was originally needed because the .c --> .o rule is: $(BUILD)/%.o: %.c and because the generated frozen_content.c is inside build-FOO, it must therefore generate build-FOO/build-FOO/frozen_content.o. But 2eda5138701d6a7d36f8d8e3700d136b3c1161b7 added a new build rule for pins.c that can also be used for frozen_content.c. Signed-off-by: iabdalkader --- py/py.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/py.mk b/py/py.mk index ffb853c652..e81df52fb7 100644 --- a/py/py.mk +++ b/py/py.mk @@ -203,7 +203,7 @@ PY_O += $(PY_CORE_O) # object file for frozen code specified via a manifest ifneq ($(FROZEN_MANIFEST),) -PY_O += $(BUILD)/$(BUILD)/frozen_content.o +PY_O += $(BUILD)/frozen_content.o endif # Sources that may contain qstrings