Skip to content

Commit 799ccdc

Browse files
committed
esp8266, stmhal, unix: MAKE_FROZEN is consistently defined in mkenv.mk.
1 parent 06234a6 commit 799ccdc

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

esp8266/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ include ../py/py.mk
1212

1313
MPY_CROSS = ../mpy-cross/mpy-cross
1414
MPY_TOOL = ../tools/mpy-tool.py
15-
MAKE_FROZEN = ../tools/make-frozen.py
1615

1716
FROZEN_DIR = scripts
1817
FROZEN_MPY_DIR = modules

stmhal/Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,6 @@ all: $(BUILD)/firmware.dfu $(BUILD)/firmware.hex
276276
ifneq ($(FROZEN_DIR),)
277277
CFLAGS += -DMICROPY_MODULE_FROZEN_STR
278278
OBJ += $(BUILD)/frozen-files.o
279-
MAKE_FROZEN = ../tools/make-frozen.py
280279

281280
$(BUILD)/frozen-files.o: $(BUILD)/frozen-files.c
282281
$(call compile_c)

unix/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ coverage_test: coverage
273273
gcov -o build-coverage/extmod ../extmod/*.c
274274

275275
$(BUILD)/_frozen_upip.c: $(BUILD)/frozen_upip/upip.py
276-
../tools/make-frozen.py $(dir $^) > $@
276+
$(MAKE_FROZEN) $(dir $^) > $@
277277

278278
# Select latest upip version available
279279
UPIP_TARBALL := $(shell ls -1 -v ../tools/micropython-upip-*.tar.gz | tail -n1)

0 commit comments

Comments
 (0)