From 9fffdc3159776ea728fec583f7aff975490cc4b7 Mon Sep 17 00:00:00 2001 From: Francisco Demartino Date: Fri, 15 Jan 2016 04:14:13 -0300 Subject: [PATCH] add `-I .` to CYTHONFLAGS to fix `pxd not found` I don't know if this is related to a particular version of cython --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e3fc688..07b3c90 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ CXXFLAGS=-std=c++11 -Wall -Wextra -pedantic -fPIC -O1 -g -I$(PYTHONINCDIR) LDFLAGS=--shared MODLDFLAGS= CYTHON=cython -CYTHONFLAGS=--gdb --cplus -3 --fast-fail +CYTHONFLAGS=--gdb --cplus -3 --fast-fail -I . PXDGEN=python3 pxdgen.py .PHONY: all