8000 py/py.mk: Remove extra build dir created for frozen_content. · pimoroni/micropython@215a982 · GitHub
[go: up one dir, main page]

Skip to content

Commit 215a982

Browse files
iabdalkaderdpgeorge
authored andcommitted
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 2eda513 added a new build rule for pins.c that can also be used for frozen_content.c. Signed-off-by: iabdalkader <i.abdalkader@gmail.com>
1 parent bdaea86 commit 215a982

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/py.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ PY_O += $(PY_CORE_O)
203203

204204
# object file for frozen code specified via a manifest
205205
ifneq ($(FROZEN_MANIFEST),)
206-
PY_O += $(BUILD)/$(BUILD)/frozen_content.o
206+
PY_O += $(BUILD)/frozen_content.o
207207
endif
208208

209209
# Sources that may contain qstrings

0 commit comments

Comments
 (0)
0