10
0
mirror of https://gitlab.com/scemama/irpf90.git synced 2024-06-02 03:15:20 +02:00

Bug in makefile with cython

This commit is contained in:
Anthony Scemama 2013-10-03 11:20:58 +02:00
parent 1b3924c615
commit b0d955cb85
3 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -1,6 +1,6 @@
PYTHON=python PYTHON=python
PYVERSION=$(shell $(PYTHON) -c "import sys; print(sys.version[:3])") PYVERSION=$(shell $(PYTHON) -c "import sys; print(sys.version[:3])")
HAS_CYTHON=$(shell which cython &> /dev/null && echo 1 || echo 0) HAS_CYTHON=$(shell bash -c "which cython &> /dev/null && echo 1 || echo 0")
ifneq ($(HAS_CYTHON),0) ifneq ($(HAS_CYTHON),0)
../bin/irpf90: irpf90.exe ../bin/irpf90: irpf90.exe

View File

@ -1 +1 @@
version = "1.2.20" version = "1.2.22"