10000 stm32/boards/PYBD_SFx: Allow FROZEN_MANIFEST to be overridden. · micropython/micropython@9d7c168 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9d7c168

Browse files
dhylandsdpgeorge
authored andcommitted
stm32/boards/PYBD_SFx: Allow FROZEN_MANIFEST to be overridden.
Because mpconfigboard.mk used = rather then ?= it doesn't allow FROZEN_MANIFEST to be overridden using a GNUmakefile or the manifest.
1 parent a82fad7 commit 9d7c168

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ports/stm32/boards/PYBD_SF2/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ MICROPY_SSL_MBEDTLS = 1
2020
MICROPY_VFS_LFS2 = 1
2121

2222
# PYBD-specific frozen modules
23-
FROZEN_MANIFEST = $(BOARD_DIR)/manifest.py
23+
FROZEN_MANIFEST ?= $(BOARD_DIR)/manifest.py

ports/stm32/boards/PYBD_SF3/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ MICROPY_SSL_MBEDTLS = 1
2020
MICROPY_VFS_LFS2 = 1
2121

2222
# PYBD-specific frozen modules
23-
FROZEN_MANIFEST = boards/PYBD_SF2/manifest.py
23+
FROZEN_MANIFEST ?= boards/PYBD_SF2/manifest.py

ports/stm32/boards/PYBD_SF6/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ MICROPY_SSL_MBEDTLS = 1
1717
MICROPY_VFS_LFS2 = 1
1818

1919
# PYBD-specific frozen modules
20-
FROZEN_MANIFEST = boards/PYBD_SF2/manifest.py
20+
FROZEN_MANIFEST ?= boards/PYBD_SF2/manifest.py

0 commit comments

Comments
 (0)
0