1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-19 16:26:36 +02:00

Disable Python support in the default build

This commit is contained in:
jakob
2017-05-21 16:18:39 -04:00
parent 76d1eafdc0
commit 4f60d546e6
3 changed files with 5 additions and 4 deletions

View File

@ -41,7 +41,7 @@ ifneq ($(QR_PNG), disabled)
endif
# Check if we want build Python scripting support
PYTHON = $(shell if [ -z "$(DISABLE_PYTHON)" ] || [ "$(DISABLE_PYTHON)" = "0" ] ; then echo enabled ; else echo disabled ; fi)
PYTHON = $(shell if [ -z "$(ENABLE_PYTHON)" ] || [ "$(ENABLE_PYTHON)" = "0" ] ; then echo disabled ; else echo enabled ; fi)
ifneq ($(PYTHON), disabled)
-include $(CHECKS_DIR)/python.mk
endif