We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a59d4c8 commit 7307736Copy full SHA for 7307736
ports/atmel-samd/boards/pybadge/mpconfigboard.mk
@@ -21,3 +21,13 @@ CIRCUITPY_PARALLELDISPLAYBUS= 0
21
CIRCUITPY_STAGE = 1
22
23
FROZEN_MPY_DIRS += $(TOP)/frozen/circuitpython-stage/pybadge
24
+
25
+# We don't have room for the fonts for terminalio for certain languages,
26
+# so turn off terminalio, and if it's off and displayio is on,
27
+# force a clean build.
28
+# Note that we cannot test $(CIRCUITPY_DISPLAYIO) directly with an
29
+# ifeq, because it's not set yet.
30
+ifneq (,$(filter $(TRANSLATION),ja ko ru))
31
+CIRCUITPY_TERMINALIO = 0
32
+RELEASE_NEEDS_CLEAN_BUILD = $(CIRCUITPY_DISPLAYIO)
33
+endif
0 commit comments