From 6f96e848c233abd39e12e15bcf1cd32f48331894 Mon Sep 17 00:00:00 2001 From: Wesley Ellis Date: Thu, 14 Jul 2022 14:42:32 -0400 Subject: Replace python with python3 for calling uf2conv Instead of calling python use python3. On a default debian 11 install there is no python binary, only python3. Given that the uf2conv script is written for python 3 I think this is a safe change to make --- make.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'make.mk') diff --git a/make.mk b/make.mk index d8e2bf8a..dacce3fa 100644 --- a/make.mk +++ b/make.mk @@ -45,7 +45,7 @@ ifndef EMSCRIPTEN CC = arm-none-eabi-gcc OBJCOPY = arm-none-eabi-objcopy SIZE = arm-none-eabi-size -UF2 = python $(TOP)/utils/uf2conv.py +UF2 = python3 $(TOP)/utils/uf2conv.py CFLAGS += -W -Wall -Wextra -Wmissing-prototypes -Wmissing-declarations CFLAGS += --std=gnu99 -Os -- cgit v1.2.3