From 70c6e121fdc53d015546ae64dc78571cbe80f356 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner <inform@tiker.net> Date: Tue, 30 Jun 2015 15:51:07 -0500 Subject: [PATCH] Fix GL wrapper header location --- cffi_build.py.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cffi_build.py.in b/cffi_build.py.in index 7d2b8678..3e4d6086 100644 --- a/cffi_build.py.in +++ b/cffi_build.py.in @@ -43,7 +43,7 @@ with open("src/c_wrapper/wrap_cl_core.h", "rt") as f: ffi.cdef(f.read()) if {CL_ENABLE_GL}: - with open("wrap_cl_gl_core.h") as f: + with open("src/c_wrapper/wrap_cl_gl_core.h") as f: ffi.cdef(f.read()) ffi.set_source("pyopencl._cffi", -- GitLab