summaryrefslogtreecommitdiff
path: root/Makefile.config.example
diff options
context:
space:
mode:
authorJonathan L Long <jonlong@cs.berkeley.edu>2014-07-18 16:13:24 -0700
committerJonathan L Long <jonlong@cs.berkeley.edu>2014-07-18 16:15:02 -0700
commit49381cc22c360b0c4c8c8e0df93ec6a445db3f30 (patch)
tree4ce1a3a916b351dac6eb9c6a2ede1b48cffd734b /Makefile.config.example
parent590293186cb9425f3ef2f4aa7f6f64eb68de4bc6 (diff)
downloadcaffeonacl-49381cc22c360b0c4c8c8e0df93ec6a445db3f30.tar.gz
caffeonacl-49381cc22c360b0c4c8c8e0df93ec6a445db3f30.tar.bz2
caffeonacl-49381cc22c360b0c4c8c8e0df93ec6a445db3f30.zip
use /usr instead of /usr/local for default Python include/lib
This makes the default settings usable with Travis/Ubuntu Python
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 708a39c7..7c96d8a9 100644
--- a/Makefile.config.example
+++ b/Makefile.config.example
@@ -42,15 +42,15 @@ BLAS := atlas
# 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_INCLUDE := /usr/local/include/python2.7 \
- /usr/local/lib/python2.7/dist-packages/numpy/core/include
+PYTHON_INCLUDE := /usr/include/python2.7 \
+ /usr/lib/python2.7/dist-packages/numpy/core/include
# Anaconda Python distribution is quite popular. Include path:
# PYTHON_INCLUDE := $(HOME)/anaconda/include \
# $(HOME)/anaconda/include/python2.7 \
# $(HOME)/anaconda/lib/python2.7/site-packages/numpy/core/include
# We need to be able to find libpythonX.X.so or .dylib.
-PYTHON_LIB := /usr/local/lib
+PYTHON_LIB := /usr/lib
# PYTHON_LIB := $(HOME)/anaconda/lib
# Whatever else you find you need goes here.