[Makefile] Use the $(PYTHON) variable, instead of hardcoded `python3`

This commit is contained in:
Kenn Sebesta 2022-03-12 13:23:01 -05:00
parent 816f87a085
commit ed1229477f
1 changed files with 1 additions and 1 deletions

View File

@ -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))