From 7aa39b59b0530943912853ef546f47d6c41e0459 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 2 Aug 2014 00:39:32 +0900 Subject: [PATCH] Fixed location of installed Python scripts. This relates to bug 1146. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f499069..f012a87 100644 --- a/Makefile +++ b/Makefile @@ -1,16 +1,16 @@ PREFIX = '/usr' DESTDIR = '/' +PYTHON_SITELIB=$(shell python2 -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())") #interfaces = 'gtk qt4' all: @python setup.py build install: - @python setup.py install --prefix=${PREFIX} --root=${DESTDIR} + @python setup.py install --prefix=${PREFIX} --root=${DESTDIR} --install-lib=${PYTHON_SITELIB} uninstall: @python setup.py uninstall clean: rm -rf build/ -