rename python include config var to match lib
authorEvan Shelhamer <shelhamer@imaginarynumber.net>
Tue, 15 Apr 2014 07:36:18 +0000 (01:36 -0600)
committerEvan Shelhamer <shelhamer@imaginarynumber.net>
Tue, 15 Apr 2014 07:49:08 +0000 (01:49 -0600)
Makefile.config.example

index 5ee564e..be231c3 100644 (file)
@@ -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