소스 검색

HUE-191. Build should honour python version set in buildvars

bc Wong 15 년 전
부모
커밋
9ff3e38c4f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Makefile.vars

+ 1 - 1
Makefile.vars

@@ -43,7 +43,7 @@ ifndef SKIP_PYTHONDEV_CHECK
   endif
   SYS_PYTHON := $(shell echo $(PYTHON_H) | grep -o python2..)
 else
-  SYS_PYTHON := $(shell which python)
+  SYS_PYTHON ?= $(shell which python)
 endif
 
 ifeq ($(SYS_PYTHON),)