From 81e4286409c035240c552c7d9fca004aa12a24a8 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Sat, 14 Nov 2020 12:36:47 +0100 Subject: [PATCH] makefile: fix condition --- client/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Makefile b/client/Makefile index 3f0fac21c..2f0899bc8 100644 --- a/client/Makefile +++ b/client/Makefile @@ -292,7 +292,7 @@ endif ifneq ("$(wildcard src/pm3_luawrap.c)","") SWIG_LUA_FOUND = 1 endif -ifneq ($(SKIPPYTHON),1) +ifeq ($(PYTHON_FOUND),1) ifneq ("$(wildcard src/pm3_pywrap.c)","") SWIG_PYTHON_FOUND = 1 endif