From 49381cc22c360b0c4c8c8e0df93ec6a445db3f30 Mon Sep 17 00:00:00 2001 From: Jonathan L Long Date: Fri, 18 Jul 2014 16:13:24 -0700 Subject: use /usr instead of /usr/local for default Python include/lib This makes the default settings usable with Travis/Ubuntu Python --- Makefile.config.example | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile.config.example') 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. -- cgit v1.2.3