software/common.mak: use PYTHON env var
authorSebastien Bourdeauducq <sb@m-labs.hk>
Fri, 31 Jul 2015 10:31:04 +0000 (18:31 +0800)
committerSebastien Bourdeauducq <sb@m-labs.hk>
Fri, 31 Jul 2015 10:31:04 +0000 (18:31 +0800)
software/common.mak

index d16d2b3f69c1adfd9ac14d49934bbaa28f81c07d..72f42fcbf7a01bda0a4d70e9d8a0288af5036a35 100644 (file)
@@ -2,6 +2,7 @@ include $(MSCDIR)/software/include/generated/cpu.mak
 TARGET_PREFIX=$(TRIPLE)-
 
 RM ?= rm -f
+PYTHON ?= python3
 
 ifeq ($(CLANG),1)
 CC_normal      := clang -target $(TRIPLE) -integrated-as
@@ -20,7 +21,7 @@ AR_quiet      = @echo " AR      " $@ && $(AR_normal)
 LD_quiet      = @echo " LD      " $@ && $(LD_normal)
 OBJCOPY_quiet = @echo " OBJCOPY " $@ && $(OBJCOPY_normal)
 
-MSC_GIT_ID := $(shell cd $(MSCDIR) && python3 -c "from misoclib.cpu.identifier import get_id; print(hex(get_id()), end='')")
+MSC_GIT_ID := $(shell cd $(MSCDIR) && $(PYTHON) -c "from misoclib.cpu.identifier import get_id; print(hex(get_id()), end='')")
 
 ifeq ($(V),1)
        CC = $(CC_normal)