From 426f089df4563de9ef2c69e90ec6c66131663a8a Mon Sep 17 00:00:00 2001 From: Evan Shelhamer Date: Tue, 15 Apr 2014 01:36:18 -0600 Subject: [PATCH] rename python include config var to match lib --- Makefile.config.example | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.config.example b/Makefile.config.example index 5ee564e..be231c3 100644 --- a/Makefile.config.example +++ b/Makefile.config.example @@ -25,10 +25,10 @@ BLAS := 0 # NOTE: this is required only if you will compile the python interface. # We need to be able to find Python.h and numpy/arrayobject.h. -PYTHON_INCLUDES := /usr/include/python2.7 \ +PYTHON_INCLUDE := /usr/include/python2.7 \ /usr/local/lib/python2.7/dist-packages/numpy/core/include # Anaconda Python distribution is quite popular. Include path: -# PYTHON_INCLUDES := $(HOME)/anaconda/include \ +# PYTHON_INCLUDE := $(HOME)/anaconda/include \ # $(HOME)/anaconda/include/python2.7 \ # $(HOME)/anaconda/lib/python2.7/site-packages/numpy/core/include @@ -37,7 +37,7 @@ PYTHON_LIB := /usr/local/lib # PYTHON_LIB := $(HOME)/anaconda/lib # Whatever else you find you need goes here. -INCLUDE_DIRS := $(PYTHON_INCLUDES) /usr/local/include +INCLUDE_DIRS := $(PYTHON_INCLUDE) /usr/local/include LIBRARY_DIRS := $(PYTHON_LIB) /usr/lib /usr/local/lib BUILD_DIR := build -- 2.7.4