Set ENABLE_PYOSYS=0 by default

Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
Clifford Wolf 2019-04-22 14:49:17 +02:00
parent 99d5435650
commit 93f32b5dec
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ ENABLE_LIBYOSYS := 1
ENABLE_PROTOBUF := 0
# python wrappers
ENABLE_PYOSYS := 1
ENABLE_PYOSYS := 0
PYTHON_VERSION_TESTCODE := "import sys;t='{v[0]}.{v[1]}'.format(v=list(sys.version_info[:2]));print(t)"
PYTHON_EXECUTABLE := $(shell if python3 -c ""; then echo "python3"; else echo "python"; fi)
PYTHON_VERSION := $(shell $(PYTHON_EXECUTABLE) -c ""$(PYTHON_VERSION_TESTCODE)"")