We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12ef8bf commit d1e831bCopy full SHA for d1e831b
1 file changed
Makefile
@@ -4,11 +4,11 @@ python_version_minor := $(word 2,${python_version_full})
4
python_version_patch := $(word 3,${python_version_full})
5
6
7
-PY_GT_3_6 := $(shell [ $(python_version_major) -gt 3 -o \( $(python_version_major) -eq 3 -a $(python_version_minor) -ge 6 \) ] && echo true)
+PY_GT_3_8 := $(shell [ $(python_version_major) -gt 3 -o \( $(python_version_major) -eq 3 -a $(python_version_minor) -ge 8 \) ] && echo true)
8
9
PYLIB=$(shell python3-config --ldflags)
10
PYINC=$(shell python3-config --cflags)
11
-ifeq ($(PY_GT_3_6),true)
+ifeq ($(PY_GT_3_8),true)
12
PYLIB=$(shell python3-config --ldflags --embed)
13
PYINC=$(shell python3-config --cflags --embed )
14
endif
0 commit comments