mirror of
https://github.com/gtalent/sc9k.git
synced 2025-01-23 00:33:36 -06:00
[buildcore] Add check to make sure we have the right Python
This commit is contained in:
parent
716ca9b768
commit
a7c83d6fdd
4
deps/buildcore/base.mk
vendored
4
deps/buildcore/base.mk
vendored
@ -16,14 +16,14 @@ else
|
||||
HOST_ENV=${OS}-$(shell uname -m)
|
||||
endif
|
||||
|
||||
ifeq (${$(shell python -c 'import sys; print(sys.version_info[0])')},3)
|
||||
ifeq ($(shell python -c 'import sys; print(sys.version_info[0])'),3)
|
||||
PYTHON3=python
|
||||
else
|
||||
PYTHON3=python3
|
||||
endif
|
||||
|
||||
SCRIPTS=${BUILDCORE_PATH}/scripts
|
||||
SETUP_BUILD=python3 ${SCRIPTS}/setup-build.py
|
||||
SETUP_BUILD=${PYTHON3} ${SCRIPTS}/setup-build.py
|
||||
PYBB=${PYTHON3} ${SCRIPTS}/pybb.py
|
||||
CMAKE_BUILD=${PYBB} cmake-build
|
||||
RM_RF=${PYBB} rm
|
||||
|
Loading…
Reference in New Issue
Block a user