From ed1229477f295102eff32612e452212eea4ed9b3 Mon Sep 17 00:00:00 2001 From: Kenn Sebesta Date: Sat, 12 Mar 2022 13:23:01 -0500 Subject: [PATCH] [Makefile] Use the $(PYTHON) variable, instead of hardcoded `python3` --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 25f2f127..92c436c5 100644 --- a/Makefile +++ b/Makefile @@ -219,7 +219,7 @@ all_fw_package: all_fw all_fw_package_clean $(V0) @echo " PACKAGE $(ROOT_DIR)/package/*" # Place all firmware files into `./package` directory - $(V1) python3 package_firmware.py + $(V1) $(PYTHON) package_firmware.py # Find all the leftover object and lst files $(eval BUILD_CRUFT := $(call rwildcard,$(ROOT_DIR)/build,*.lst *.o))