From 69c4b37fe6b1cc683b4f61fc879449c75b0baff9 Mon Sep 17 00:00:00 2001 From: Yorik van Havre Date: Thu, 18 Sep 2014 10:04:26 -0300 Subject: [PATCH] Fixed relativepaths in PyCXX --- src/CXX/cxxextensions.c | 4 ++-- src/CXX/cxxsupport.cxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/CXX/cxxextensions.c b/src/CXX/cxxextensions.c index 28a8e1d38..cfab556f0 100644 --- a/src/CXX/cxxextensions.c +++ b/src/CXX/cxxextensions.c @@ -37,7 +37,7 @@ #include "CXX/WrapPython.h" #if PY_MAJOR_VERSION == 2 -#include "Src/Python2/cxxextensions.c" +#include "Python2/cxxextensions.c" #else -#include "Src/Python3/cxxextensions.c" +#include "Python3/cxxextensions.c" #endif diff --git a/src/CXX/cxxsupport.cxx b/src/CXX/cxxsupport.cxx index 1f2fb432d..946e60dc0 100644 --- a/src/CXX/cxxsupport.cxx +++ b/src/CXX/cxxsupport.cxx @@ -37,7 +37,7 @@ #include "CXX/WrapPython.h" #if PY_MAJOR_VERSION == 2 -#include "Src/Python2/cxxsupport.cxx" +#include "Python2/cxxsupport.cxx" #else -#include "Src/Python3/cxxsupport.cxx" +#include "Python3/cxxsupport.cxx" #endif