From 815a6b95f437b7fcc5d90a305f667b01d731feae Mon Sep 17 00:00:00 2001 From: Martin Ling Date: Sat, 19 Jul 2014 15:43:03 +0100 Subject: [PATCH] Pass configured prefix to python setup.py install step. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 01e002cd..1bb8966e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -416,7 +416,7 @@ python-build: bindings/cxx/libsigrokxx.la cd bindings/python && python setup.py build python-install: - cd bindings/python && python setup.py install + cd bindings/python && python setup.py install --prefix $(prefix) python-clean: cd bindings/python && python setup.py clean --all