aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-02-20 16:02:55 +0100
committerMattias Andrée <maandree@kth.se>2021-02-20 16:02:55 +0100
commit494e239f7597b5f279395776f5375c7fb2cea288 (patch)
tree42d108d9fa14d0a62e920b6183c5431e85d187e9
parentChange license, flat file hier, do not use gpp, join .py and .pyx, simpler makefile (diff)
downloadpylibcoopgamma-494e239f7597b5f279395776f5375c7fb2cea288.tar.gz
pylibcoopgamma-494e239f7597b5f279395776f5375c7fb2cea288.tar.bz2
pylibcoopgamma-494e239f7597b5f279395776f5375c7fb2cea288.tar.xz
m improvement to config.mk1.1.3
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r--config.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.mk b/config.mk
index 610ba13..2af4d2f 100644
--- a/config.mk
+++ b/config.mk
@@ -1,7 +1,7 @@
PREFIX = /usr
-PY_MAJOR = $$($(PYTHON) --version 2>&1 | cut -d ' ' -f 2 | cut -d . -f 1)
-PY_MINOR = $$($(PYTHON) --version 2>&1 | cut -d ' ' -f 2 | cut -d . -f 2)
+PY_MAJOR = $$(python --version 2>&1 | cut -d ' ' -f 2 | cut -d . -f 1)
+PY_MINOR = $$(python$(PYTHON_MAJOR) --version 2>&1)
PY_VER = $(PY_MAJOR)$(PY_MINOR)
PY_VERSION = $(PY_MAJOR).$(PY_MINOR)
@@ -9,7 +9,7 @@ PYTHONDIR = $(PREFIX)/lib/python$(PY_VERSION)
CYTHON = cython
PKGCONFIG = pkg-config
-PYTHON = python3
+PYTHON = python$(PY_MAJOR)
CPPFLAGS =
CFLAGS = -std=c99 -Wall $$($(PKGCONFIG) --cflags python$(PY_MAJOR)) -O2