summaryrefslogtreecommitdiff
path: root/Makefile.config.example
diff options
context:
space:
mode:
authorEvan Shelhamer <shelhamer@imaginarynumber.net>2014-04-15 01:36:18 -0600
committerEvan Shelhamer <shelhamer@imaginarynumber.net>2014-04-15 01:49:08 -0600
commit426f089df4563de9ef2c69e90ec6c66131663a8a (patch)
treec98fab52a4fdf264137712516af85d070d464452 /Makefile.config.example
parenta98fcb58b884856952fa6684808e6965df3bb893 (diff)
downloadcaffe-426f089df4563de9ef2c69e90ec6c66131663a8a.tar.gz
caffe-426f089df4563de9ef2c69e90ec6c66131663a8a.tar.bz2
caffe-426f089df4563de9ef2c69e90ec6c66131663a8a.zip
rename python include config var to match lib
Diffstat (limited to 'Makefile.config.example')
-rw-r--r--Makefile.config.example6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.config.example b/Makefile.config.example
index 5ee564ef..be231c35 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